-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
175 lines (157 loc) Β· 4.78 KB
/
index.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Happy Dewali</title>
<style>
body {
margin: 0%;
padding: 0%;
background-color: #000934;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100vh;
background: radial-gradient(circle, transparent 50%, black 150%), #110e0c;
}
@keyframes batiMove {
0% {border-radius: 40% 81% 45% 35% / 90% 77% 45% 26%;}
25% {border-radius: 70% 81% 45% 35% / 90% 77% 45% 26%;}
50% {border-radius: 90% 81% 45% 35% / 90% 77% 45% 26%;}
75% {border-radius: 70% 81% 45% 35% / 90% 77% 45% 26%;}
100% {border-radius: 40% 81% 45% 35% / 90% 77% 45% 26%;}
}
@keyframes batiRaysMove {
0% {box-shadow: 2px -2px 305px 210px #472305;}
25% {box-shadow: 2px -2px 255px 200px #472305;}
50% {box-shadow: 2px -2px 205px 190px #472305;}
75% {box-shadow: 2px -2px 255px 200px #472305;}
100% {box-shadow: 2px -2px 305px 210px #472305;}
}
@keyframes mainHoleMove {
0% {width: 20%;}
25% {width: 20.2%;}
50% {width: 20.5%;}
75% {width: 20.2%;}
100% {width: 20%;}
}
main {
width: 20%;
height: 80vh;
border-radius: 50%;
background: #1a140e;
box-shadow: 2px -2px 255px 108px #472305;
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
transform: rotateX(85deg);
margin-top: 27rem;
animation-name: mainHoleMove;
animation-duration: 4s;
animation-iteration-count: infinite;
}
#diya {
position: absolute;
top: 65%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 0 0 300px 300px;
background: radial-gradient(circle, #4b280c, #381c03, #110a05);
width: 28%;
height: 32vh;
z-index: 1;
}
#bati {
display: block;
width: 70px;
height: 180px;
background-color: #e5a400;
background: radial-gradient(circle, transparent 0%, #fbe7b5 150%), #ffd466;
animation-name: batiMove;
animation-duration: 4s;
animation-iteration-count: infinite;
border-radius: 40% 81% 45% 47% / 93% 77% 45% 26%;
position: absolute;
top: 36%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
box-shadow: 2px -2px 46px 5px #654a08;
}
#batiRays
{
display: block;
width: 60px;
height: 170px;
border-radius: 40% 81% 45% 47% / 93% 77% 45% 26%;
position: absolute;
top: 36%;
left: 50%;
transform: translate(-50%, -50%);
box-shadow: 2px -2px 305px 210px #472305;
animation-name: batiRaysMove;
animation-duration: 4s;
animation-iteration-count: infinite;
}
#upperLayer1 {
width: 99%;
height: 2PX;
margin: 8px 0 8px 2px;
background-color: #fff;
position: relative;
display: flex;
align-items: flex-start;
}
#upperLayer2 {
width: 97.5%;
height: 2PX;
margin: 8px 0 8px 5px;
background-color: #fff;
position: relative;
display: flex;
align-items: flex-start;
}
#center {
display: flex;
flex-direction: row;
width: 100%;
justify-content: space-evenly;
}
.circle {
width: 20px;
height: 20px;
border-radius: 50%;
z-index: -1;
background: #fff;
}
</style>
</head>
<body>
<div id="bati">
</div>
<div id="batiRays">
</div>
<div id="diya">
<div id="upperLayer1"></div>
<div id="center">
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
</div>
<div id="upperLayer2"></div>
</div>
<main>
</main>
</body>
</html>