-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
293 lines (269 loc) · 6.19 KB
/
style.css
File metadata and controls
293 lines (269 loc) · 6.19 KB
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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
body {
margin: 0;
padding: 0;
width: 100%;
height: 100vh;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
font-family: 'Roboto', sans-serif;
-webkit-box-sizing: border-box;
box-sizing: border-box;
background-color: #1a1919;
}
.top {
width: 100%;
height: 15vh;
}
@media (max-width: 500px) {
.top {
height: 0;
}
}
.middle {
width: 100%;
height: 70vh;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.container {
max-width: 480px;
width: 100%;
height: 530px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: space-evenly;
-ms-flex-pack: space-evenly;
justify-content: space-evenly;
}
.time-left {
width: 100%;
height: 50px;
text-align: center;
font-size: 42px;
color: gray;
}
.start {
-webkit-animation: 2s animate2 linear infinite both;
animation: 2s animate2 linear infinite both;
}
.start,
.tap-area {
position: relative;
cursor: pointer;
width: 300px;
height: 300px;
border-radius: 50%;
background: -webkit-gradient(linear, left top, right top, from(#755bea), to(#ff72c0));
background: linear-gradient(90deg, #755bea, #ff72c0);
-webkit-box-shadow: 0px 0px 21px #7700ff;
box-shadow: 0px 0px 21px #7700ff;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
font-size: 32px;
color: white;
overflow: hidden;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.taps {
width: 100%;
height: 50px;
text-align: center;
font-size: 42px;
color: gray;
}
.taps-per-second {
width: 100%;
height: 50px;
text-align: center;
font-size: 42px;
color: gray;
}
.bottom {
width: 100%;
height: 15vh;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
position: relative;
}
@media (max-width: 500px) {
.bottom {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
}
.chose-time {
margin-right: 10%;
max-width: 220px;
width: 100%;
height: 74px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
@media (max-width: 500px) {
.chose-time {
margin-right: 0%;
}
}
.chose-time .time {
cursor: pointer;
height: 60px;
width: 60px;
border-radius: 50%;
border: double 1px transparent;
border-radius: 50%;
background-image: -webkit-gradient(linear, left top, left bottom, from(#1a1919), to(#1a1919)), radial-gradient(circle at top left, #755bea, #ff72c0);
background-image: linear-gradient(#1a1919, #1a1919), radial-gradient(circle at top left, #755bea, #ff72c0);
background-origin: border-box;
background-clip: content-box, border-box;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.chose-time .time span {
font-size: 28px;
background: -webkit-gradient(linear, left top, right top, from(#755bea), to(#ff72c0));
background: linear-gradient(90deg, #755bea, #ff72c0);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.chose-time .timeBgcChange {
-webkit-animation: 2s animate2 linear infinite both;
animation: 2s animate2 linear infinite both;
}
.hide {
display: none;
}
.show {
display: block;
}
.change-size {
-webkit-transform: scale(0.95);
transform: scale(0.95);
-webkit-box-shadow: 0px 0px 61px #7700ff;
box-shadow: 0px 0px 61px #7700ff;
}
.animation {
position: absolute;
top: 50%;
left: 50%;
background: white;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
pointer-events: none;
border-radius: 50%;
-webkit-animation: animate 1s linear infinite;
animation: animate 1s linear infinite;
opacity: .1;
}
@-webkit-keyframes animate {
0% {
width: 0px;
height: 0px;
}
100% {
width: 1000px;
height: 1000px;
}
}
@keyframes animate {
0% {
width: 0px;
height: 0px;
}
100% {
width: 1000px;
height: 1000px;
}
}
@-webkit-keyframes animate2 {
0% {
-webkit-box-shadow: 0px 0px 21px #7700ff;
box-shadow: 0px 0px 21px #7700ff;
}
50% {
-webkit-box-shadow: 0px 0px 71px #7700ff;
box-shadow: 0px 0px 71px #7700ff;
}
100% {
-webkit-box-shadow: 0px 0px 21px #7700ff;
box-shadow: 0px 0px 21px #7700ff;
}
}
@keyframes animate2 {
0% {
-webkit-box-shadow: 0px 0px 21px #7700ff;
box-shadow: 0px 0px 21px #7700ff;
}
50% {
-webkit-box-shadow: 0px 0px 71px #7700ff;
box-shadow: 0px 0px 71px #7700ff;
}
100% {
-webkit-box-shadow: 0px 0px 21px #7700ff;
box-shadow: 0px 0px 21px #7700ff;
}
}
/*# sourceMappingURL=style.css.map */