-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
111 lines (104 loc) · 2.01 KB
/
style.css
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
* {
margin: 0;
padding: 0%;
box-sizing: border-box;
}
body {
background-color: rgb(236, 236, 236);
}
.container {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.outer-outer {
width: 320px;
height: 320px;
border: 7px solid #2B66A8;
border-radius: 50%;
}
.outer {
width: 307px;
height: 307px;
background: transparent;
border: 15px solid #FCBF00;
border-radius: 50%;
z-index: 100;
position: relative;
overflow: hidden;
}
.skewed{
position: absolute;
width: 70px;
height: 330px;
transform: rotate(-45deg);
background-color: #2B66A8;
z-index: 0;
left: 80;
}
.first-inner {
margin: 8px;
width: 260px;
height: 260px;
border: 15px solid black;
border-color: transparent #FCBF00;
border-radius: 50%;
position: relative;
overflow: hidden;
}
.left-v {
position: absolute;
width: 10px;
height: 140px;
background-color: #FCBF00;
/* border:3px solid #2B66A8; */
transform: rotate(-45deg);
top: 6px;
bottom: 0;
left: 64px;
}
.right-v {
position: absolute;
width: 10px;
height: 140px;
background-color: #FCBF00;
/* border:3px solid #2B66A8; */
transform: rotate(45deg);
top: 6px;
right: 65px;
}
.inner-circle{
margin: 60px 0px 0 40px;
width: 160px;
height: 160px;
border: 18px solid black;
border-color: #FCBF00 transparent #FCBF00 #FCBF00;
border-radius: 50%;
position: relative;
}
.v-inner{
width:15px;
height: 70px;
background-color: #FCBF00;
position: absolute;
bottom:-30;
left: 40;
}
.h-inner-o{
width:50px;
height: 15px;
background-color: #FCBF00;
position: absolute;
top:75;
left: 40;
}
.h-inner-t{
width:50px;
height: 15px;
background-color: FCBF00;
position: absolute;
top:100;
left: 40;
}