-
Notifications
You must be signed in to change notification settings - Fork 0
/
flag.css
110 lines (108 loc) · 2.09 KB
/
flag.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
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500&family=Roboto:ital,wght@1,100&display=swap');
*{
padding: 0;
margin: 0;
}
.text-container{
width: 600px;
text-align: center;
font-family: 'Oleo Script Swash Caps', cursive;
font-size: 22px;
font-style: italic;
margin: auto;
}
.line-01{
color: blue;
}
.line-02{
color:orange;
|}
.main-container{
width: 600px;
height: 300px;
margin: auto;
border: 2px solid #e1e1e1;
}
.saffron{
height: 133px;
background: orange;
width: 100%;
}
.white{
height: 134px;
width: 100%;
}
.ashok-chakra{
position: relative;
width: 124px;
height: 124px;
margin: auto;
border: 5px solid blue;
border-radius: 50%;
}
.ashok-chakra .spikes,
.ashok-chakra .spikes .spike{
position: absolute;
top: 0;
bottom: 0;
width: 100%;
height: 100%;
}
.ashok-chakra .spikes .spike{
transform: rotate(calc(15deg*var(--i)));
}
.ashok-chakra .spikes .spike::before {
content: "";
position: absolute;
width: 10px;
height: 10px;
background: blue;
border-radius: 50%;
top: -5px;
left: calc(50% - 8px);
}
.ashok-chakra .spikes .spike::after {
content: "";
position: absolute;
width: 6px;
height: 50%;
background: blue;
top: -8px;
left: calc(50% - 5px);
transform-origin: bottom;
transform: rotate(7.5deg);
clip-path: polygon(50% 5%, 100% 50%, 50% 95%, 0% 50%);
}
.ashok-chakra::after {
content: "";
position: absolute;
width: 16px;
height: 16px;
background: blue;
top: calc(50% - 8px);
left: calc(50% - 8px);
border-radius: 50%;
}
.green{
height: 133px;
background: green;
width: 100%;
}
.text-content{
text-align: center;
margin: 100px 380px;
font-family: 'Oleo Script Swash Caps', cursive;
font-style: italic;
font-size: 62px;
width: 600px;
}
.text1{
color:orange;
}
.text2{
color:green;
line-height: 15px;
}
.year{
color:blue;
}