-
Notifications
You must be signed in to change notification settings - Fork 0
/
11.Eye-of-sauron.html
51 lines (51 loc) · 1023 Bytes
/
11.Eye-of-sauron.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
<div class="half-circle left"></div>
<div class="circle">
<div class="circle-inside"></div>
</div>
<div class="half-circle right"></div>
<style>
* {
margin: 0;
}
body {
background: #191210;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 50px;
}
.circle {
width: 140px;
height: 140px;
border-radius: 50%;
border: 20px solid #ECA03D;
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
}
.circle-inside {
background: #84271C;
width: 50px;
height: 50px;
border-radius: 50%;
}
.half-circle {
width: 100px;
height: 50px;
box-sizing: border-box;
border: 20px solid #ECA03D;
border-top: 0;
border-bottom-left-radius: 100px;
border-bottom-right-radius: 100px;
}
.half-circle.left {
margin-right: -20px;
margin-top: 50px;
}
.half-circle.right {
margin-left: -20px;
margin-top: -50px;
transform: scaleY(-1);
}
</style>