-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzadatak6.html
91 lines (81 loc) · 1.96 KB
/
zadatak6.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="hr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zadatak 5 CSS</title>
<style>
body {
padding: 0;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: azure;
}
.git-logo {
height: 150px;
width: 150px;
background-color: #f06033;
border-radius: 15px;
position: relative;
transform: rotate(45deg);
}
.line1 {
height: 10px;
width: 110px;
background-color: white;
position: absolute;
top: 40px;
}
.line1:before {
content:"";
position: absolute;
width: 30px;
height: 30px;
background-color: white;
border-radius: 50%;
top: -8px;
left: 33px;
}
.line1:after {
content:"";
position: absolute;
width: 30px;
height: 30px;
background-color: white;
border-radius: 50%;
top: -8px;
left: 95px;
}
.line2 {
height: 10px;
width: 100px;
background-color: white;
position: absolute;
top: 40px;
left: 35px;
transform: rotate(-135deg);
}
.line2::before {
content:"";
position: absolute;
width: 30px;
height: 30px;
background-color: white;
border-radius: 50%;
top: -10px;
left: -2px;
}
</style>
</head>
<body>
<div class="git-logo">
<div class="line1">
<div class="line2">
</div>
</div>
</div>
</body>
</html>