phoenix_duskmoon 5.1.0 → 6.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +120 -0
- package/README.md +21 -58
- package/assets/css/components/atom.css +168 -0
- package/assets/css/components/button.css +491 -0
- package/assets/css/components/eclipse.css +75 -0
- package/assets/css/components/footer-bubbles.css +40 -0
- package/assets/css/components/plasma-ball.css +657 -0
- package/assets/css/components/signature.css +36 -0
- package/assets/css/components/snow.css +22 -0
- package/assets/css/components/spotlight-search.css +50 -0
- package/assets/css/components.css +8 -0
- package/package.json +13 -7
- package/priv/static/phoenix_duskmoon.css +4770 -791
- package/priv/static/phoenix_duskmoon.js +5 -29
|
@@ -0,0 +1,491 @@
|
|
|
1
|
+
|
|
2
|
+
@layer components {
|
|
3
|
+
.btn-noise {
|
|
4
|
+
position: relative;
|
|
5
|
+
width: 287px;
|
|
6
|
+
height: 36px;
|
|
7
|
+
background: none;
|
|
8
|
+
font-family: "Josefin Sans", sans-serif;
|
|
9
|
+
font-size: 24px;
|
|
10
|
+
cursor: pointer;
|
|
11
|
+
border: none;
|
|
12
|
+
--sy: 1;
|
|
13
|
+
--aps: running;
|
|
14
|
+
--op: 0;
|
|
15
|
+
|
|
16
|
+
&::after {
|
|
17
|
+
content: attr(data-content);
|
|
18
|
+
opacity: var(--op, 1);
|
|
19
|
+
transition: opacity 0.4s;
|
|
20
|
+
}
|
|
21
|
+
& > i {
|
|
22
|
+
position: absolute;
|
|
23
|
+
left: var(--left, 0);
|
|
24
|
+
top: 50%;
|
|
25
|
+
width: 3px;
|
|
26
|
+
height: 72px;
|
|
27
|
+
transform: translateY(-50%) scaleY(var(--sy, 0));
|
|
28
|
+
transition: transform var(--duration) ease-out;
|
|
29
|
+
|
|
30
|
+
&::after {
|
|
31
|
+
content: " ";
|
|
32
|
+
position: absolute;
|
|
33
|
+
inset: 0;
|
|
34
|
+
background-image: linear-gradient(#fff, hsl(var(--hue, 0), 75%, 75%));
|
|
35
|
+
border-radius: 50%;
|
|
36
|
+
animation: noise var(--duration) infinite ease-in-out alternate;
|
|
37
|
+
animation-play-state: var(--aps, paused);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
&:nth-child(1) {
|
|
41
|
+
--left: 0px;
|
|
42
|
+
--duration: 387ms;
|
|
43
|
+
--size: 0.053;
|
|
44
|
+
--hue: 0;
|
|
45
|
+
}
|
|
46
|
+
&:nth-child(2) {
|
|
47
|
+
--left: 4px;
|
|
48
|
+
--duration: 320ms;
|
|
49
|
+
--size: 0.857;
|
|
50
|
+
--hue: 5;
|
|
51
|
+
}
|
|
52
|
+
&:nth-child(3) {
|
|
53
|
+
--left: 8px;
|
|
54
|
+
--duration: 231ms;
|
|
55
|
+
--size: 0.183;
|
|
56
|
+
--hue: 10;
|
|
57
|
+
}
|
|
58
|
+
&:nth-child(4) {
|
|
59
|
+
--left: 12px;
|
|
60
|
+
--duration: 231ms;
|
|
61
|
+
--size: 0.699;
|
|
62
|
+
--hue: 15;
|
|
63
|
+
}
|
|
64
|
+
&:nth-child(5) {
|
|
65
|
+
--left: 16px;
|
|
66
|
+
--duration: 397ms;
|
|
67
|
+
--size: 0.634;
|
|
68
|
+
--hue: 20;
|
|
69
|
+
}
|
|
70
|
+
&:nth-child(6) {
|
|
71
|
+
--left: 20px;
|
|
72
|
+
--duration: 315ms;
|
|
73
|
+
--size: 0.152;
|
|
74
|
+
--hue: 25;
|
|
75
|
+
}
|
|
76
|
+
&:nth-child(7) {
|
|
77
|
+
--left: 24px;
|
|
78
|
+
--duration: 360ms;
|
|
79
|
+
--size: 0.552;
|
|
80
|
+
--hue: 30;
|
|
81
|
+
}
|
|
82
|
+
&:nth-child(8) {
|
|
83
|
+
--left: 28px;
|
|
84
|
+
--duration: 379ms;
|
|
85
|
+
--size: 0.02;
|
|
86
|
+
--hue: 35;
|
|
87
|
+
}
|
|
88
|
+
&:nth-child(9) {
|
|
89
|
+
--left: 32px;
|
|
90
|
+
--duration: 337ms;
|
|
91
|
+
--size: 0.039;
|
|
92
|
+
--hue: 40;
|
|
93
|
+
}
|
|
94
|
+
&:nth-child(10) {
|
|
95
|
+
--left: 36px;
|
|
96
|
+
--duration: 267ms;
|
|
97
|
+
--size: 0.531;
|
|
98
|
+
--hue: 45;
|
|
99
|
+
}
|
|
100
|
+
&:nth-child(11) {
|
|
101
|
+
--left: 40px;
|
|
102
|
+
--duration: 385ms;
|
|
103
|
+
--size: 0.199;
|
|
104
|
+
--hue: 50;
|
|
105
|
+
}
|
|
106
|
+
&:nth-child(12) {
|
|
107
|
+
--left: 44px;
|
|
108
|
+
--duration: 268ms;
|
|
109
|
+
--size: 0.863;
|
|
110
|
+
--hue: 55;
|
|
111
|
+
}
|
|
112
|
+
&:nth-child(13) {
|
|
113
|
+
--left: 48px;
|
|
114
|
+
--duration: 370ms;
|
|
115
|
+
--size: 0.334;
|
|
116
|
+
--hue: 60;
|
|
117
|
+
}
|
|
118
|
+
&:nth-child(14) {
|
|
119
|
+
--left: 52px;
|
|
120
|
+
--duration: 266ms;
|
|
121
|
+
--size: 0.951;
|
|
122
|
+
--hue: 65;
|
|
123
|
+
}
|
|
124
|
+
&:nth-child(15) {
|
|
125
|
+
--left: 56px;
|
|
126
|
+
--duration: 340ms;
|
|
127
|
+
--size: 0.841;
|
|
128
|
+
--hue: 70;
|
|
129
|
+
}
|
|
130
|
+
&:nth-child(16) {
|
|
131
|
+
--left: 60px;
|
|
132
|
+
--duration: 255ms;
|
|
133
|
+
--size: 0.388;
|
|
134
|
+
--hue: 75;
|
|
135
|
+
}
|
|
136
|
+
&:nth-child(17) {
|
|
137
|
+
--left: 64px;
|
|
138
|
+
--duration: 222ms;
|
|
139
|
+
--size: 0.184;
|
|
140
|
+
--hue: 80;
|
|
141
|
+
}
|
|
142
|
+
&:nth-child(18) {
|
|
143
|
+
--left: 68px;
|
|
144
|
+
--duration: 390ms;
|
|
145
|
+
--size: 0.383;
|
|
146
|
+
--hue: 85;
|
|
147
|
+
}
|
|
148
|
+
&:nth-child(19) {
|
|
149
|
+
--left: 72px;
|
|
150
|
+
--duration: 370ms;
|
|
151
|
+
--size: 0.974;
|
|
152
|
+
--hue: 90;
|
|
153
|
+
}
|
|
154
|
+
&:nth-child(20) {
|
|
155
|
+
--left: 76px;
|
|
156
|
+
--duration: 285ms;
|
|
157
|
+
--size: 0.478;
|
|
158
|
+
--hue: 95;
|
|
159
|
+
}
|
|
160
|
+
&:nth-child(21) {
|
|
161
|
+
--left: 80px;
|
|
162
|
+
--duration: 252ms;
|
|
163
|
+
--size: 0.402;
|
|
164
|
+
--hue: 100;
|
|
165
|
+
}
|
|
166
|
+
&:nth-child(22) {
|
|
167
|
+
--left: 84px;
|
|
168
|
+
--duration: 298ms;
|
|
169
|
+
--size: 0.567;
|
|
170
|
+
--hue: 105;
|
|
171
|
+
}
|
|
172
|
+
&:nth-child(23) {
|
|
173
|
+
--left: 88px;
|
|
174
|
+
--duration: 389ms;
|
|
175
|
+
--size: 0.926;
|
|
176
|
+
--hue: 110;
|
|
177
|
+
}
|
|
178
|
+
&:nth-child(24) {
|
|
179
|
+
--left: 92px;
|
|
180
|
+
--duration: 368ms;
|
|
181
|
+
--size: 0.137;
|
|
182
|
+
--hue: 115;
|
|
183
|
+
}
|
|
184
|
+
&:nth-child(25) {
|
|
185
|
+
--left: 96px;
|
|
186
|
+
--duration: 219ms;
|
|
187
|
+
--size: 0.111;
|
|
188
|
+
--hue: 120;
|
|
189
|
+
}
|
|
190
|
+
&:nth-child(26) {
|
|
191
|
+
--left: 100px;
|
|
192
|
+
--duration: 344ms;
|
|
193
|
+
--size: 0.12;
|
|
194
|
+
--hue: 125;
|
|
195
|
+
}
|
|
196
|
+
&:nth-child(27) {
|
|
197
|
+
--left: 104px;
|
|
198
|
+
--duration: 329ms;
|
|
199
|
+
--size: 0.368;
|
|
200
|
+
--hue: 130;
|
|
201
|
+
}
|
|
202
|
+
&:nth-child(28) {
|
|
203
|
+
--left: 108px;
|
|
204
|
+
--duration: 241ms;
|
|
205
|
+
--size: 0.316;
|
|
206
|
+
--hue: 135;
|
|
207
|
+
}
|
|
208
|
+
&:nth-child(29) {
|
|
209
|
+
--left: 112px;
|
|
210
|
+
--duration: 393ms;
|
|
211
|
+
--size: 0.463;
|
|
212
|
+
--hue: 140;
|
|
213
|
+
}
|
|
214
|
+
&:nth-child(30) {
|
|
215
|
+
--left: 116px;
|
|
216
|
+
--duration: 304ms;
|
|
217
|
+
--size: 0.372;
|
|
218
|
+
--hue: 145;
|
|
219
|
+
}
|
|
220
|
+
&:nth-child(31) {
|
|
221
|
+
--left: 120px;
|
|
222
|
+
--duration: 300ms;
|
|
223
|
+
--size: 0.39;
|
|
224
|
+
--hue: 150;
|
|
225
|
+
}
|
|
226
|
+
&:nth-child(32) {
|
|
227
|
+
--left: 124px;
|
|
228
|
+
--duration: 366ms;
|
|
229
|
+
--size: 0.785;
|
|
230
|
+
--hue: 155;
|
|
231
|
+
}
|
|
232
|
+
&:nth-child(33) {
|
|
233
|
+
--left: 128px;
|
|
234
|
+
--duration: 337ms;
|
|
235
|
+
--size: 0.499;
|
|
236
|
+
--hue: 160;
|
|
237
|
+
}
|
|
238
|
+
&:nth-child(34) {
|
|
239
|
+
--left: 132px;
|
|
240
|
+
--duration: 262ms;
|
|
241
|
+
--size: 0.724;
|
|
242
|
+
--hue: 165;
|
|
243
|
+
}
|
|
244
|
+
&:nth-child(35) {
|
|
245
|
+
--left: 136px;
|
|
246
|
+
--duration: 230ms;
|
|
247
|
+
--size: 0.406;
|
|
248
|
+
--hue: 170;
|
|
249
|
+
}
|
|
250
|
+
&:nth-child(36) {
|
|
251
|
+
--left: 140px;
|
|
252
|
+
--duration: 333ms;
|
|
253
|
+
--size: 0.057;
|
|
254
|
+
--hue: 175;
|
|
255
|
+
}
|
|
256
|
+
&:nth-child(37) {
|
|
257
|
+
--left: 144px;
|
|
258
|
+
--duration: 348ms;
|
|
259
|
+
--size: 0.347;
|
|
260
|
+
--hue: 180;
|
|
261
|
+
}
|
|
262
|
+
&:nth-child(38) {
|
|
263
|
+
--left: 148px;
|
|
264
|
+
--duration: 229ms;
|
|
265
|
+
--size: 0.683;
|
|
266
|
+
--hue: 185;
|
|
267
|
+
}
|
|
268
|
+
&:nth-child(39) {
|
|
269
|
+
--left: 152px;
|
|
270
|
+
--duration: 240ms;
|
|
271
|
+
--size: 0.072;
|
|
272
|
+
--hue: 190;
|
|
273
|
+
}
|
|
274
|
+
&:nth-child(40) {
|
|
275
|
+
--left: 156px;
|
|
276
|
+
--duration: 325ms;
|
|
277
|
+
--size: 0.557;
|
|
278
|
+
--hue: 195;
|
|
279
|
+
}
|
|
280
|
+
&:nth-child(41) {
|
|
281
|
+
--left: 160px;
|
|
282
|
+
--duration: 304ms;
|
|
283
|
+
--size: 0.42;
|
|
284
|
+
--hue: 200;
|
|
285
|
+
}
|
|
286
|
+
&:nth-child(42) {
|
|
287
|
+
--left: 164px;
|
|
288
|
+
--duration: 202ms;
|
|
289
|
+
--size: 0.406;
|
|
290
|
+
--hue: 205;
|
|
291
|
+
}
|
|
292
|
+
&:nth-child(43) {
|
|
293
|
+
--left: 168px;
|
|
294
|
+
--duration: 383ms;
|
|
295
|
+
--size: 0.818;
|
|
296
|
+
--hue: 210;
|
|
297
|
+
}
|
|
298
|
+
&:nth-child(44) {
|
|
299
|
+
--left: 172px;
|
|
300
|
+
--duration: 362ms;
|
|
301
|
+
--size: 0.09;
|
|
302
|
+
--hue: 215;
|
|
303
|
+
}
|
|
304
|
+
&:nth-child(45) {
|
|
305
|
+
--left: 176px;
|
|
306
|
+
--duration: 393ms;
|
|
307
|
+
--size: 0.61;
|
|
308
|
+
--hue: 220;
|
|
309
|
+
}
|
|
310
|
+
&:nth-child(46) {
|
|
311
|
+
--left: 180px;
|
|
312
|
+
--duration: 287ms;
|
|
313
|
+
--size: 0.166;
|
|
314
|
+
--hue: 225;
|
|
315
|
+
}
|
|
316
|
+
&:nth-child(47) {
|
|
317
|
+
--left: 184px;
|
|
318
|
+
--duration: 333ms;
|
|
319
|
+
--size: 0.472;
|
|
320
|
+
--hue: 230;
|
|
321
|
+
}
|
|
322
|
+
&:nth-child(48) {
|
|
323
|
+
--left: 188px;
|
|
324
|
+
--duration: 223ms;
|
|
325
|
+
--size: 0.035;
|
|
326
|
+
--hue: 235;
|
|
327
|
+
}
|
|
328
|
+
&:nth-child(49) {
|
|
329
|
+
--left: 192px;
|
|
330
|
+
--duration: 310ms;
|
|
331
|
+
--size: 0.117;
|
|
332
|
+
--hue: 240;
|
|
333
|
+
}
|
|
334
|
+
&:nth-child(50) {
|
|
335
|
+
--left: 196px;
|
|
336
|
+
--duration: 220ms;
|
|
337
|
+
--size: 0.943;
|
|
338
|
+
--hue: 245;
|
|
339
|
+
}
|
|
340
|
+
&:nth-child(51) {
|
|
341
|
+
--left: 200px;
|
|
342
|
+
--duration: 219ms;
|
|
343
|
+
--size: 0.221;
|
|
344
|
+
--hue: 250;
|
|
345
|
+
}
|
|
346
|
+
&:nth-child(52) {
|
|
347
|
+
--left: 204px;
|
|
348
|
+
--duration: 274ms;
|
|
349
|
+
--size: 0.555;
|
|
350
|
+
--hue: 255;
|
|
351
|
+
}
|
|
352
|
+
&:nth-child(53) {
|
|
353
|
+
--left: 208px;
|
|
354
|
+
--duration: 339ms;
|
|
355
|
+
--size: 0.712;
|
|
356
|
+
--hue: 260;
|
|
357
|
+
}
|
|
358
|
+
&:nth-child(54) {
|
|
359
|
+
--left: 212px;
|
|
360
|
+
--duration: 214ms;
|
|
361
|
+
--size: 0.857;
|
|
362
|
+
--hue: 265;
|
|
363
|
+
}
|
|
364
|
+
&:nth-child(55) {
|
|
365
|
+
--left: 216px;
|
|
366
|
+
--duration: 215ms;
|
|
367
|
+
--size: 0.565;
|
|
368
|
+
--hue: 270;
|
|
369
|
+
}
|
|
370
|
+
&:nth-child(56) {
|
|
371
|
+
--left: 220px;
|
|
372
|
+
--duration: 247ms;
|
|
373
|
+
--size: 0.684;
|
|
374
|
+
--hue: 275;
|
|
375
|
+
}
|
|
376
|
+
&:nth-child(57) {
|
|
377
|
+
--left: 224px;
|
|
378
|
+
--duration: 283ms;
|
|
379
|
+
--size: 0.134;
|
|
380
|
+
--hue: 280;
|
|
381
|
+
}
|
|
382
|
+
&:nth-child(58) {
|
|
383
|
+
--left: 228px;
|
|
384
|
+
--duration: 362ms;
|
|
385
|
+
--size: 0.734;
|
|
386
|
+
--hue: 285;
|
|
387
|
+
}
|
|
388
|
+
&:nth-child(59) {
|
|
389
|
+
--left: 232px;
|
|
390
|
+
--duration: 363ms;
|
|
391
|
+
--size: 0.622;
|
|
392
|
+
--hue: 290;
|
|
393
|
+
}
|
|
394
|
+
&:nth-child(60) {
|
|
395
|
+
--left: 236px;
|
|
396
|
+
--duration: 396ms;
|
|
397
|
+
--size: 0.095;
|
|
398
|
+
--hue: 295;
|
|
399
|
+
}
|
|
400
|
+
&:nth-child(61) {
|
|
401
|
+
--left: 240px;
|
|
402
|
+
--duration: 245ms;
|
|
403
|
+
--size: 0.847;
|
|
404
|
+
--hue: 300;
|
|
405
|
+
}
|
|
406
|
+
&:nth-child(62) {
|
|
407
|
+
--left: 244px;
|
|
408
|
+
--duration: 278ms;
|
|
409
|
+
--size: 0.169;
|
|
410
|
+
--hue: 305;
|
|
411
|
+
}
|
|
412
|
+
&:nth-child(63) {
|
|
413
|
+
--left: 248px;
|
|
414
|
+
--duration: 375ms;
|
|
415
|
+
--size: 0.185;
|
|
416
|
+
--hue: 310;
|
|
417
|
+
}
|
|
418
|
+
&:nth-child(64) {
|
|
419
|
+
--left: 252px;
|
|
420
|
+
--duration: 392ms;
|
|
421
|
+
--size: 0.357;
|
|
422
|
+
--hue: 315;
|
|
423
|
+
}
|
|
424
|
+
&:nth-child(65) {
|
|
425
|
+
--left: 256px;
|
|
426
|
+
--duration: 315ms;
|
|
427
|
+
--size: 0.284;
|
|
428
|
+
--hue: 320;
|
|
429
|
+
}
|
|
430
|
+
&:nth-child(66) {
|
|
431
|
+
--left: 260px;
|
|
432
|
+
--duration: 215ms;
|
|
433
|
+
--size: 0.508;
|
|
434
|
+
--hue: 325;
|
|
435
|
+
}
|
|
436
|
+
&:nth-child(67) {
|
|
437
|
+
--left: 264px;
|
|
438
|
+
--duration: 372ms;
|
|
439
|
+
--size: 0.019;
|
|
440
|
+
--hue: 330;
|
|
441
|
+
}
|
|
442
|
+
&:nth-child(68) {
|
|
443
|
+
--left: 268px;
|
|
444
|
+
--duration: 232ms;
|
|
445
|
+
--size: 0.906;
|
|
446
|
+
--hue: 335;
|
|
447
|
+
}
|
|
448
|
+
&:nth-child(69) {
|
|
449
|
+
--left: 272px;
|
|
450
|
+
--duration: 262ms;
|
|
451
|
+
--size: 0.974;
|
|
452
|
+
--hue: 340;
|
|
453
|
+
}
|
|
454
|
+
&:nth-child(70) {
|
|
455
|
+
--left: 276px;
|
|
456
|
+
--duration: 349ms;
|
|
457
|
+
--size: 0.302;
|
|
458
|
+
--hue: 345;
|
|
459
|
+
}
|
|
460
|
+
&:nth-child(71) {
|
|
461
|
+
--left: 280px;
|
|
462
|
+
--duration: 293ms;
|
|
463
|
+
--size: 1;
|
|
464
|
+
--hue: 350;
|
|
465
|
+
}
|
|
466
|
+
&:nth-child(72) {
|
|
467
|
+
--left: 284px;
|
|
468
|
+
--duration: 315ms;
|
|
469
|
+
--size: 0.186;
|
|
470
|
+
--hue: 355;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
&:hover {
|
|
476
|
+
border: none;
|
|
477
|
+
--sy: 1;
|
|
478
|
+
--aps: running;
|
|
479
|
+
--op: 0;
|
|
480
|
+
}
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
@keyframes noise {
|
|
484
|
+
0% {
|
|
485
|
+
transform: scaleY(calc(1 - (var(--size, 0))));
|
|
486
|
+
}
|
|
487
|
+
100% {
|
|
488
|
+
transform: scaleY(calc(1 + (var(--size, 0))));
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
|
|
2
|
+
@layer components {
|
|
3
|
+
.eclipse {
|
|
4
|
+
--bg-color: #09090b;
|
|
5
|
+
--r: 600px;
|
|
6
|
+
width: var(--r);
|
|
7
|
+
height: var(--r);
|
|
8
|
+
position: relative;
|
|
9
|
+
overflow: hidden;
|
|
10
|
+
|
|
11
|
+
.layer {
|
|
12
|
+
position: absolute;
|
|
13
|
+
inset: 0;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.layer-1 {
|
|
17
|
+
animation: 30s linear rotate infinite;
|
|
18
|
+
transform-origin: 66% 40%;
|
|
19
|
+
background:
|
|
20
|
+
repeating-conic-gradient(from 0deg at 50% 50%, rgba(255,255,255,0) 0%, rgba(255,248,176,0.46) 3.96%, rgba(69,168,255,0) 8.33%, rgba(69,168,255,0) 8.33%) 69.5% 37.7% / 17.2% 17.2% no-repeat,
|
|
21
|
+
radial-gradient(ellipse at 50% 50%, rgba(255,248,176,1) 0%, rgba(69,168,255,0) 47.22%) 74.1% 35.6% / 33.6% 36.6% no-repeat;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.layer-2 {
|
|
25
|
+
animation: 20s linear rotate infinite reverse;
|
|
26
|
+
transform-origin: 66% 40%;
|
|
27
|
+
background:
|
|
28
|
+
radial-gradient(ellipse at 50% 50%, rgba(69,168,255,0) 20%, var(--bg-color) 29%) 77.4% 33.8% / 40% 40% no-repeat,
|
|
29
|
+
repeating-conic-gradient(from 15deg at 50% 50%, rgba(255,255,255,0) 0%, rgba(255,248,176,0.51) 2.64%, rgba(69,168,255,0) 5.56%, rgba(69,168,255,0) 5.56%) 69.5% 37.7% / 17.2% 17.2% no-repeat;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.layer-3 {
|
|
33
|
+
animation: 20s linear rotate infinite;
|
|
34
|
+
background:
|
|
35
|
+
repeating-conic-gradient(from 355deg at 50% 50%, rgba(255,255,255,0) 0%, rgba(255,198,69,0.26) 8.1%, rgba(69,168,255,0) 16.67%, rgba(69,168,255,0) 16.67%) 0 0 / 100% 100% no-repeat;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.layer-4 {
|
|
39
|
+
animation: 40s linear rotate infinite reverse;
|
|
40
|
+
background:
|
|
41
|
+
repeating-conic-gradient(from 355deg at 50% 50%, rgba(255,255,255,0) 0%, rgba(255,198,69,0.26) 2.86%, rgba(69,168,255,0) 5.88%, rgba(69,168,255,0) 5.88%) 0% 0% / 100% 100% no-repeat;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.layer-5 {
|
|
45
|
+
animation: 40s linear rotate infinite;
|
|
46
|
+
background:
|
|
47
|
+
repeating-conic-gradient(from 0deg at 50% 50%, rgba(255,255,255,0) 0%, rgba(255,198,69,0.26) 6.62%, rgba(69,168,255,0) 7.69%, rgba(69,168,255,0) 7.69%) 0% 0% / 100% 100% no-repeat;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.layer-6 {
|
|
51
|
+
background:
|
|
52
|
+
radial-gradient(ellipse at 50% 50%, rgba(255,248,176,0.27) 0%, rgba(69,168,255,0) 63.54%) 67% 39.3% / 5.8% 5.8% no-repeat,
|
|
53
|
+
radial-gradient(ellipse at 50% 50%, rgba(69,168,255,0) 40.28%, rgba(255,183,163,0.05) 52.43%, rgba(69,168,255,0) 63.54%) 68% 38.6% / 13% 13% no-repeat,
|
|
54
|
+
radial-gradient(ellipse at 50% 50%, rgba(255,248,176,0.55) 0%, rgba(69,168,255,0) 63.54%) 66.9% 39.3% / 3.4% 3.4% no-repeat,
|
|
55
|
+
radial-gradient(ellipse at 50% 50%, rgba(255,248,176,0.2) 0%, rgba(69,168,255,0) 66.67%) 70.7% 36.5% / 25.6% 25.6% no-repeat,
|
|
56
|
+
radial-gradient(ellipse at 50% 50%, var(--bg-color) 26%, rgba(69,168,255,0) 26.4%) 0% 0% / 100% 100% no-repeat,
|
|
57
|
+
radial-gradient(ellipse at 50% 50%, rgba(255,212,148,0.04) 0%, rgba(69,168,255,0) 69.79%) 0% 0% / 100% 100% no-repeat,
|
|
58
|
+
radial-gradient(ellipse at 50% 50%, rgba(255,240,148,0.11) 0%, rgba(69,168,255,0) 52.43%) 0% 0% / 100% 100% no-repeat,
|
|
59
|
+
radial-gradient(ellipse at 51% 49%, rgba(69,168,255,0) 23.96%, var(--bg-color) 40.63%) 0% 0% / 100% 100% no-repeat,
|
|
60
|
+
repeating-conic-gradient(from 0deg at 50% 50%, rgba(255,255,255,0) 0%, rgba(255,239,69,0.14) 11.04%, rgba(69,168,255,0) 20%, rgba(69,168,255,0) 20%) 0% 0% / 100% 100% no-repeat,
|
|
61
|
+
radial-gradient(ellipse at 52% 48%, rgba(69,168,255,0) 23.96%, var(--bg-color) 34.03%) 0% 0% / 100% 100% no-repeat,
|
|
62
|
+
radial-gradient(ellipse at 50% 50%, rgba(255,185,147,0.29) 28%, rgba(69,168,255,0) 30%) 0% 0% / 100% 100% no-repeat;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
@keyframes rotate {
|
|
67
|
+
from {
|
|
68
|
+
transform: rotate(0deg);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
to {
|
|
72
|
+
transform: rotate(360deg);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
|
|
2
|
+
@layer components {
|
|
3
|
+
.footer-bubbles {
|
|
4
|
+
position: absolute;
|
|
5
|
+
top:0;
|
|
6
|
+
left:0;
|
|
7
|
+
right:0;
|
|
8
|
+
height:1rem;
|
|
9
|
+
background: var(--footer-bg-color);
|
|
10
|
+
|
|
11
|
+
.bubble {
|
|
12
|
+
position: absolute;
|
|
13
|
+
left:var(--position, 50%);
|
|
14
|
+
background: var(--footer-bg-color);
|
|
15
|
+
border-radius:100%;
|
|
16
|
+
animation: bubble-size var(--time, 4s) ease-in infinite var(--delay, 0s),
|
|
17
|
+
bubble-move var(--time, 4s) ease-in infinite var(--delay, 0s);
|
|
18
|
+
transform:translate(-50%, 100%);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
@keyframes bubble-size {
|
|
23
|
+
0%, 75% {
|
|
24
|
+
width:var(--size, 4rem);
|
|
25
|
+
height:var(--size, 4rem);
|
|
26
|
+
}
|
|
27
|
+
100% {
|
|
28
|
+
width:0rem;
|
|
29
|
+
height:0rem;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
@keyframes bubble-move {
|
|
33
|
+
0% {
|
|
34
|
+
bottom:-4rem;
|
|
35
|
+
}
|
|
36
|
+
100% {
|
|
37
|
+
bottom:var(--distance, 10rem);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|