-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
259 lines (221 loc) · 6.41 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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
<!DOCTYPE html>
<html lang="pt-br">
<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>MarTV</title>
<link rel="shortcut icon" href="https://cdn.discordapp.com/attachments/1023778230722891836/1023778308409806889/icon_site.png" type="image/png">
</head>
<body>
<script>setTimeout(function() {
window.location.href = "/home";
}, 3000);</script>
<div class="container">
<div class="canvas canvas1">
<div class="spinner1 spinnerMax">
<div class="spinner1 spinnerMid">
<div class="spinner1 spinnerMin"></div>
</div>
</div>
</div>
<style>body {
background: #000;
background-size: cover;
margin: 0;
padding-top: 5em;
padding-bottom: 5em;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
margin: 0 auto;
max-width: 650px;
min-width: 200px;
}
.canvas {
align-items: center;
background: #000;
border-radius: 50%;
display: flex;
height: 10em;
justify-content: center;
margin: 1em 1em 2em 1em;
width: 10em;
}
/* Spinner 1 starts here */
.spinner1 {
align-items: center;
border: .3em solid transparent;
border-top: .3em solid #fff;
border-right: .3em solid #fff;
border-radius: 100%;
display: flex;
justify-content: center;
}
.spinnerMax {
animation: spinnerOne 3s linear infinite;
height: 3em;
width: 3em;
}
.spinnerMid {
animation: spinnerOne 5s linear infinite;
height: 2.4em;
width: 2.4em;
}
.spinnerMin {
animation: spinnerOne 5s linear infinite;
height: 1.8em;
width: 1.8em;
}
@keyframes spinnerOne {
0% {
transform: rotate(0deg)
}
100% {
transform: rotate(360deg)
}
}
/* Spinner 1 ends here */
/* Spinner 2 starts here */
.canvas2 {
position: relative;
}
.spinner2 {
animation: spinnerTwo 1s linear infinite;
background: #fff;
border-radius: 100px;
height: 3em;
transform-origin: top;
position: absolute;
top: 50%;
width: .22em;
}
.hourHand {
animation: spinnerTwo 7s linear infinite;
background: #fff;
border-radius: 100px;
height: 2em;
transform-origin: top;
position: absolute;
top: 50%;
width: .2em;
}
.dot {
background: #fff;
border-radius: 100%;
height: .5em;
width: .5em;
}
@keyframes spinnerTwo {
0% {
transform: rotate(0deg)
}
100% {
transform: rotate(360deg)
}
}
/* Spinner 2 ends here */
/* Spinner 3 starts here */
.spinner3 {
animation: spinnerThree 1s linear infinite;
background: #fff;
border-radius: 100%;
width: 3em;
height: 3em;
}
@keyframes spinnerThree {
0%, 35% {
background: #fff;
transform: scale(1);
}
20%, 50% {
background: #fff;
transform: scale(1.3);
}
}
/* Spinner 3 ends here */
/* Spinner 4 starts here */
.spinner4 {
animation: spinnerFour 1s linear infinite;
border: solid 7px transparent;
border-top: solid 7px #fff;
border-radius: 100%;
width: 3em;
height: 3em;
}
@keyframes spinnerFour {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/* Spinner 4 ends here */
/* Spinner 5 starts here */
.spinner5 {
animation: spinnerFive 1s linear infinite;
border: solid 1.5em #fff;
border-right: solid 1.5em transparent;
border-left: solid 1.5em transparent;
border-radius: 100%;
width: 0;
height: 0;
}
@keyframes spinnerFive {
0% {
transform: rotate(0deg);
}
50% {
transform: rotate(60deg)
}
100% {
transform: rotate(360deg);
}
}
/* Spinner 5 ends here */
/* Spinner 6 starts here */
.spinner6 {
background: #fff;
border-radius: 50%;
height: 1em;
margin: .1em;
width: 1em;
}
.p1 {
animation: fall 1s linear .3s infinite;
}
.p2 {
animation: fall 1s linear .2s infinite;
}
.p3 {
animation: fall 1s linear .1s infinite;
}
.p4 {
animation: fall 1s linear infinite;
}
@keyframes fall {
0% {
transform: translateY(-15px);
}
25%, 75% {
transform: translateY(0);
}
100% {
transform: translateY(-15px);
}
}
/* Spinner 6 ends here */
@media (max-width: 600px) {
.container {
align-items: center;
flex-direction: column;
}
.canvas {
margin: 1em;
}
}</style>
</body>
</html>