-
Notifications
You must be signed in to change notification settings - Fork 1
/
option.html
1789 lines (1602 loc) · 48.8 KB
/
option.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
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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zh" data-theme="light">
<head>
<meta charset="UTF-8" />
<title>导航选项</title>
<script type="进入密码你猜猜" id="content">
#classify
$早期 | font-awesome
专业电脑维修 | @本论坛始建于 2005 年。\\n现已停止服务。
在线发送邮件 | https://exmail.qq.com/login
程序自然语言编辑器 | @本项目已成为一纸空文。
概念百科 | http://kuriya.unaux.com/ [https://kuriya.shoutwiki.com/ , htdocs/wiki/index.php , https://kuriya.fandom.com/zh]
欢迎来到咱们 217 | 217/欢迎来到咱们217_jsp.htm | 你很荣幸来到我们的主脚御姐系列专题!
$Impress | television
王沼泽语收音机 | impress/lb/index.html
我眼中的清明 | @该页面正在翻新中。
独秀群芳 传承百年 | impress/qunfang/index.html
宠物窝 | cssc/web02/index.html
$小工具 | sliders
太极图 | cssc/taichi.html
直达查看太阳系 | cssc/sunsystem.html
简易计算器 | cssc/calc.html
课程表部件 | cssc/widget/index.html
随机扑克 | cssc/lz/601.html
数码管值计算 | cssc/led/index.html
弹跳 DVD 屏保 | cssc/dvd/index.html
3D 地球世界地图 | cssc/earth/index.html
劲爆淋堂 | cssc/madden-hall/index.html
音乐播放器 | cssc/music-player.html
$莹你一笑 | phone
乔碧萝来电 | hotkid/tel/来电.html
让你的照片动起来 | hotkid/nod-to-the-rhythm/index.html
你打篮球像蔡徐坤 | hotkid/你打球像蔡徐坤.htm
鸡乐盒|hotkid/jilehe/鸡乐盒OnLine.html
$生成器 | dedent
抽象话生成器 | generator/index.html?emoji | 生成时请注意温文儒雅。
拼音格式化 | generator/index.html?pyfmt
彩虹文字生成器 | generator/index.html?rain
营销号生成器 | generator/index.html?various&saying=营销号生成器
狗屁不通文章生成器 | generator/index.html?various&saying=狗屁不通文章生成器
明哥体生成器 | generator/index.html?various&saying=明哥体生成器
笑话生成器 | generator/index.html?various&saying=笑话生成器
乱数假文生成器 | generator/index.html?various&saying=乱数假文生成器
能不能好好说话 | generator/index.html?nbnhhsh
图片转点阵文本生成器 | generator/index.html?braille
乱序文字生成器 | generator/index.html?disorder
在线文字翻转工具 | generator/index.html?flip
故障文字生成器 | generator/index.html?failure-text
椰树椰汁风格图片生成器 | generator/index.html?coconut
$数学工具 | sort-numeric-asc
三数求和 | math/index.html?sum
求质数 | math/index.html?prime
公约数与公倍数 | math/index.html?factor
进位制转换 | math/index.html?carry
秦九韶算法 | math/index.html?horner
竖式计算 | math/index.html?vertical
日期推算 | math/index.html?date
世界时间 | math/index.html?global-time
颜色模型转换 | math/index.html?color
图片主色调 | math/index.html?hue
矩阵计算器 | math/index.html?matrix
大写数字 | math/index.html?amount
AV/BV 号转换 | math/index.html?bv2av
单位换算 | math/index.html?units
二维码生成 | math/index.html?qrcode
字符编码转换 | math/index.html?char-encode
CRC 校验码 | math/index.html?crc
数字论证 | math/index.html?homo
千字文编号 | math/index.html?1000char
身高计算器 | math/index.html?stature
百度密文 | math/index.html?baidu-code
编码转换 | math/index.html?code-converse
$照片滤镜 | photo
Chobi | math/chobi/index.html
Flickty | math/flickity/index.html
Distort Faces | math/distort_faces/index.html
$魔力大转盘 | rotate-right
经典 | math/turntable/index.html?classic
转钱 | math/turntable/index.html?money
押奖 | math/turntable/index.html?bet
投注 | math/turntable/index.html?dice
魔术 | math/turntable/index.html?magic
游戏 | math/turntable/index.html?game
抽奖 | math/turntable/index.html?lottery
自定 | math/turntable/index.html?custom
$井字棋 | delicious
井字棋 | math/TicTacToc/index.html?normal
$音 MAD | music
撕衣服 | otomad/tearable-cloth/index.html
音 MAD 制作环境 | otomad/env/index.html
对称图 | otomad/mirror/index.html
$更多趣味 | ellipsis-h
假的 Windows 更新界面 | https://taozhiyu.gitee.io/fake
</script>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=yes" />
<meta name="Description" content="移动页面导航动画 & next-level-login-form-main" />
<link rel="stylesheet" href="https://cdn.staticfile.org/font-awesome/4.7.0/css/font-awesome.css" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<script src="https://cdn.staticfile.org/jquery/3.5.1/jquery.min.js"></script>
<script src="/basis/emmet.min.js"></script>
<script src="/basis/innerheight.js"></script>
<style>
@import url(/basis/css/ease.css);
:root {
--inner-height: 100vh;
--container-margin: 2rem;
--radius: 12px;
--container-width: calc(100vw - 2 * var(--container-margin));
--container-height: calc(var(--inner-height) - 2 * var(--container-margin));
--waterfall-margin: calc(var(--container-margin) / 2);
}
:root {
--page-background: #3c3c3c;
--container-background: #222d;
--logo-title-color: #222;
--logo-title-hover-color: black;
--primary-color: #6295ca;
--logo-scale: 1;
--inner-background: #fff3;
--tangent: 30deg;
--border: #ffffff1a #fff3 #fff3 #ffffff1a;
--text-hover-color: white;
--outer-text-color: #ccc;
--button-hover-color: #fff2;
--button-active-color: #0004;
}
* {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', "微软雅黑", "苹方-简", "思源黑体", sans-serif;
color: var(--outer-text-color);
user-select: none;
box-sizing: border-box;
outline: none !important;
}
body,
html {
background: var(--page-background);
overflow: hidden;
width: 100vw;
height: var(--inner-height);
position: relative;
}
.container {
margin: var(--container-margin);
width: var(--container-width);
height: var(--container-height);
background: var(--container-background);
border-radius: var(--radius);
box-shadow: 0 9px 13px 0 #0000004d;
overflow: hidden;
position: absolute;
border: 1px solid;
border-color: var(--border);
}
.container:not(.active) *:not(.menu-trigger) {
pointer-events: none;
}
.outer-container {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
transform: scale(1);
transition: all 500ms var(--ease-out-quad);
}
.container.active .outer-container {
transform: scale(.75);
transition: all 500ms var(--ease-in-quad);
opacity: 0;
}
.outer-container * {
position: absolute;
}
.inner-container {
position: absolute;
top: 0;
width: var(--container-width);
height: var(--container-height);
border: 1px solid;
border-color: var(--border);
}
.logo {
color: var(--outer-text-color);
transform: scale(var(--logo-scale));
transition: transform 500ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.logo::before {
content: '⬢';
position: relative;
font-size: 72px;
}
@media (pointer: coarse) {
.logo::before {
line-height: 90px;
}
}
.logo * {
position: absolute;
font-style: italic;
display: block;
text-align: center;
}
.logo .title {
width: 2em;
left: 11px;
top: 42px;
color: var(--logo-title-color);
}
.logo .badge {
left: 36px;
top: 23px;
font-size: 80%;
background-color: var(--primary-color);
display: inline;
padding: 1px 5px;
border-radius: 1em;
}
.outer-container .poem {
width: calc(100vw - var(--container-margin) * 4);
height: auto;
left: var(--container-margin);
top: var(--container-margin);
padding: var(--waterfall-margin) var(--container-margin);
}
.live-time {
width: calc(100vw - var(--container-margin) * 4);
height: auto;
left: var(--container-margin);
bottom: var(--container-margin);
font-size: 200%;
padding: var(--container-margin);
}
@media (max-width: 991px) {
.live-time {
text-align: center;
padding-bottom: 0;
}
.outer-container .poem {
text-align: center;
}
}
.live-time * {
position: static;
margin-bottom: 0;
}
.live-time #date {
font-weight: lighter;
}
.live-time #full-time {
font-size: 188%;
}
.live-time #second {
font-size: 65%;
}
[hidden] {
display: none !important;
}
.container .menu-trigger {
/* right: var(--container-margin);
top: var(--container-margin); */
right: 0;
width: 42px;
height: 42px;
position: absolute;
cursor: pointer;
transform: rotate(-45deg) scale(1.2) translate(-18px, 0);
z-index: 5;
transition: all 0.3s var(--ease-out-quart);
}
.container .menu-trigger * {
position: absolute;
display: block;
width: 42px;
height: 3px;
background: linear-gradient(90deg, var(--text-hover-color) 50%, var(--outer-text-color) 50.01%) left / 200%;
transition: all 900ms var(--ease-out-quart);
}
.container .menu-trigger:hover * {
background-position: right;
}
.container .menu-trigger:active {
transform: rotate(-45deg) scale(1) translate(-22px, 0);
}
.container .menu-trigger *:nth-of-type(1) {
top: 10px;
transform: scaleX(.5) rotate(180deg);
}
.container .menu-trigger *:nth-of-type(3) {
top: 32px;
transform: scaleX(.5) rotate(180deg);
}
.container .menu-trigger *:nth-of-type(2),
.container.active .menu-trigger *:nth-of-type(4),
.container .menu-trigger *:nth-of-type(4),
.container.active .menu-trigger *:nth-of-type(5) {
top: 21px;
transform: scaleX(.75);
}
.container .menu-trigger *:nth-of-type(4) {
transform: scaleX(.75) rotate(180deg) translateX(-90px);
}
.container.active .menu-trigger *:nth-of-type(4) {
transform: scaleX(.75) rotate(180deg);
}
.container .menu-trigger *:nth-of-type(5) {
transform: scaleY(.75) rotate(-90deg) translateX(150px);
}
.container.active .menu-trigger *:nth-of-type(5) {
transform: scaleY(.75) rotate(-90deg);
}
.container.active .menu-trigger *:nth-of-type(1) {
transform: scaleX(.5) rotate(180deg) translateX(-140px);
}
.container.active .menu-trigger *:nth-of-type(2) {
transform: scaleX(.75) translateX(170px);
}
.container.active .menu-trigger *:nth-of-type(3) {
transform: scaleX(.5) rotate(180deg) translateX(-110px);
}
.container .menu-bg {
transform: skewX(var(--tangent));
}
.container .menu-bg * {
height: var(--container-height);
width: calc(var(--container-width) / 3 * 4);
background-color: var(--inner-background);
display: block;
position: absolute;
transition: all 500ms var(--ease-in-cubic);
transform: scaleX(0);
}
.container .menu-bg *:nth-of-type(1) {
left: calc(var(--container-width) / 3 * -3);
}
.container .menu-bg *:nth-of-type(2) {
left: calc(var(--container-width) / 3);
}
.container .menu-bg *:nth-of-type(3) {
left: calc(var(--container-width) / 3 * 5);
}
.container.active .menu-bg * {
transform: scaleX(1);
transition: all 500ms var(--ease-out-cubic);
}
.container .menu-banner {
width: calc(var(--container-width) - 2px);
height: 75px;
position: absolute;
background-color: var(--inner-background);
transition: all 500ms var(--ease-in-cubic);
top: -85px;
backdrop-filter: blur(5px);
z-index: 4;
border: 1px solid;
border-color: var(--border);
box-shadow: 0 2px 7px 0 #0004;
}
.container.active .menu-banner {
transition: all 500ms var(--ease-out-cubic);
top: 0;
}
.container .menu-container {
padding: 0;
transform: translateY(40px);
transition: all 500ms var(--ease-in-cubic);
opacity: 0;
display: table;
width: calc(var(--container-width) * 3);
height: var(--container-height);
position: absolute;
left: calc(var(--container-width) * -1);
top: 0;
}
.container.active .menu-container {
transform: translateY(0);
transition: all 500ms var(--ease-out-cubic), left 500ms var(--ease-in-out-expo);
opacity: 1;
}
.container .tab-icon {
margin: 10px;
position: absolute;
/* top: -25px; */
/* transition: all 250ms var(--ease-in-cubic); */
}
.container.active .tab-icon {
/* top: 0; */
/* transition: all 250ms var(--ease-out-cubic); */
}
.menu-banner .fa {
font-size: 36px;
margin: 8px;
/* margin-top: 18px; */
transition: all 500ms var(--ease-out-cubic);
}
.menu-banner .fa:hover,
.menu-banner .fa.active {
color: var(--text-hover-color);
}
.menu-banner .fa:active {
transform: scale(.875);
transition: all 250ms var(--ease-out-cubic);
}
.tab-icon-index {
background-color: var(--text-hover-color);
height: 3px;
width: 46.281px;
position: absolute;
left: 150.562px;
transition: all 500ms var(--ease-in-out-expo);
}
.menu-container>* {
width: var(--container-width);
/* height: var(--container-height); */
height: auto;
display: table-cell;
/* padding-left: var(--waterfall-margin);
padding-right: var(--waterfall-margin); */
/* padding: 0 calc(var(--waterfall-margin) / 2) */
padding: 0 3px;
}
.classify-block {
overflow-y: auto;
padding: var(--container-margin);
padding-top: 76px;
padding-bottom: var(--waterfall-margin);
height: calc(var(--container-height));
}
.waterfall {
display: flex;
flex-direction: row;
/* flex-flow: column wrap; */
}
.waterfall-column {
display: flex;
flex-direction: column;
width: 100%;
margin: 0 var(--waterfall-margin);
}
@media (max-width: 991px) {
.waterfall {
display: block;
}
.waterfall-column {
width: unset;
}
}
.classify-card {
border-radius: var(--radius);
background-color: var(--inner-background);
border: 1px solid;
border-color: var(--border);
/* padding: .5rem; */
margin: var(--waterfall-margin) 0;
overflow: hidden;
box-shadow: 0 2px 3px 0 #0005;
}
.classify-card * {
color: var(--text-hover-color);
}
.classify-card .title {
background-color: var(--inner-background);
padding: .5rem .75rem;
border-bottom: 1px solid #fff3;
}
.classify-card i {
margin-right: .5em;
}
.classify-card .content {
padding: .5rem .75rem;
display: flex;
flex-wrap: wrap;
}
.classify-card .item {
margin: .25rem;
padding: .25rem;
cursor: pointer;
transition: all 250ms var(--ease-out-cubic);
transform-origin: left center;
}
.classify-card .item:active {
transform: scale(.9);
}
.classify-card .item::after,
.forget a::after {
content: '';
height: 3px;
width: 1em;
background-color: var(--text-hover-color);
display: block;
transform: translate(100px, 3px);
transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
opacity: 0;
}
.classify-card .item:hover::after,
.forget a:hover::after {
transform: translate(0, 3px);
opacity: 1;
}
.classify-card a {
text-decoration: none;
}
.menu-container h1:not(#form-title) {
margin: var(--waterfall-margin);
}
.recent-list {
margin: var(--waterfall-margin);
}
.recent-list p {
color: var(--text-hover-color);
font-size: 120%;
padding: var(--waterfall-margin);
transition: all 250ms ease-out;
border-radius: var(--radius);
}
.recent-list p:hover {
background-color: var(--inner-background);
box-shadow: 0 2px 5px 0 #0005, 0 2px 5px 0 #0000 inset;
}
.recent-list p:active {
box-shadow: 0 2px 5px 0 #0000, 0 2px 5px 0 #0005 inset;
}
.alert > .alert-window {
position: fixed;
width: calc(100vw - 8rem);
background-color: var(--inner-background);
backdrop-filter: blur(5px) brightness(.6);
height: auto;
z-index: 21;
padding: 1rem;
margin: 0 4rem;
font-size: 150%;
text-align: center;
border-radius: var(--radius);
transform-origin: center top;
transition: all 250ms var(--ease-out-cubic), backdrop-filter 0s;
box-shadow: 0 2px 5px 0 #000b;
}
.alert.hidden > .alert-window {
transform: scale(.85);
opacity: 0;
transition: all 250ms var(--ease-in-cubic);
pointer-events: none;
}
.alert .content {
padding: 1rem;
}
button {
cursor: pointer !important;
}
.alert button {
font-size: inherit;
background-color: var(--inner-background);
padding: .5rem .75rem;
margin: 1rem;
margin-top: 0;
border: 1px solid;
border-color: var(--border);
border-radius: var(--radius);
transition: all 250ms ease-out;
}
.alert button:hover {
background-color: #fff5;
text-shadow: 0 0 10px var(--primary-color);
}
.alert button:active {
background-color: #0003;
}
.alert button:focus {
box-shadow: 0 0 5px 0 var(--primary-color);
}
.alert > .backdrop {
width: 100vw;
height: var(--inner-height);
position: fixed;
left: 0;
top: 0;
background-color: #00000080;
z-index: 20;
transition: all 250ms ease-out;
backdrop-filter: blur(5px) grayscale(0.85);
}
.alert.hidden > .backdrop {
opacity: 0;
pointer-events: none;
transition: all 250ms ease-in;
}
.alert > .alert-window * {
color: white;
}
#history-tab .fa-remove {
float: right;
margin: var(--waterfall-margin);
font-size: 24px;
transition: all 250ms var(--ease-out-cubic);
transform-origin: center 54%;
cursor: pointer;
}
#history-tab .fa-remove:hover {
color: var(--text-hover-color);
transform: rotate(180deg);
}
#history-tab .fa-remove:hover:active {
transform: rotate(180deg) scale(.9);
}
#history-tab .fa-remove:active {
transform: scale(.9);
}
body>section.point-color {
width: 100vw;
height: var(--inner-height);
position: absolute;
overflow: hidden;
}
body>section.point-color .color {
position: absolute;
}
body>section.point-color .color:nth-child(1) {
top: -35vh;
left: 0;
width: 120vw;
height: 120vh;
background: radial-gradient(var(--section-color-1), transparent 70%);
}
body>section.point-color .color:nth-child(2) {
bottom: -27vh;
right: -50vw;
width: 100vw;
height: var(--inner-height);
background: radial-gradient(var(--section-color-1), transparent 70%);
}
body>section.point-color .color:nth-child(3) {
bottom: -28.5vh;
left: -36vw;
width: 110vw;
height: 110vh;
background: radial-gradient(var(--section-color-2), transparent 70%);
}
.menu-container .poem {
margin: var(--waterfall-margin);
margin-bottom: calc(var(--waterfall-margin) / 2);
}
#control-tab {
padding-left: 0;
}
.control-flex {
display: flex;
height: 100%;
padding: 0;
position: absolute;
width: calc(100% / 3);
flex-direction: row;
}
.avatar-head {
width: 30%;
background: var(--container-background);
opacity: 0.75;
text-align: center;
vertical-align: middle;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 0 5px 0 #0009;
}
@keyframes head-move {
0%,
100% {
background-position: center top;
}
50% {
background-position: center bottom;
}
}
.avatar-head>i {
font-size: 135px;
color: white;
animation: text-shining 3s infinite;
}
.control-list {
width: 70%;
padding: var(--container-margin);
padding-bottom: var(--waterfall-margin);
padding-top: 92px;
overflow: auto;
margin-right: 3px;
transition: all 500ms var(--ease-in-out-expo);
opacity: 1;
}
.control-list * {
white-space: nowrap;
/* overflow: hidden; */
}
@keyframes text-shining {
0%,
100% {
text-shadow: 0 0 0 white;
}
50% {
text-shadow: 0 0 15px white;
}
}
.control-flex:not(.login) #login-page,
.control-flex.login #control-page {
width: 0;
padding-left: 0;
padding-right: 0;
padding-bottom: 0;
margin: 0;
opacity: 0;
}
@media (max-width: 991px) {
.control-flex {
flex-direction: column;
display: block;
overflow: auto;
width: calc(100% / 3 - 3px);
}
.avatar-head {
width: 100%;
padding-top: 92px;
padding-bottom: 1.2rem;
}
.control-list {
width: 100%;
padding-top: var(--container-margin);
margin-right: 0;
overflow: hidden;
max-height: 2000px;
/* 慎用 */
}
.control-flex:not(.login) #login-page,
.control-flex.login #control-page {
width: 100%;
/* height: 0; */
max-height: 0;
padding: 0 var(--container-margin);
}
}
section.animate-block {
position: absolute;
height: var(--inner-height);
width: 100vw;
}
section.animate-block .square {
position: absolute;
/* backdrop-filter: blur(5px); */
box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(255, 255, 255, 0.1);
border-right: 1px solid rgba(255, 255, 255, 0.2);
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
background: rgba(255, 255, 255, 0.1);
border-radius: 10px;
animation: square-move 10s infinite;
animation-delay: calc(-1s * var(--i));
}
@keyframes square-move {
0%,
100% {
transform: translateY(-40px);
}
50% {
transform: translateY(40px);
}
}
section.animate-block .square:nth-child(1) {
top: -10px;
right: 6px;
width: 10vmin;
height: 10vmin;
}
section.animate-block .square:nth-child(2) {
top: 1px;
left: -10px;
width: 12vmin;
height: 12vmin;
z-index: 2;
}
section.animate-block .square:nth-child(3) {
top: 175px;
right: -6px;
width: 8vmin;
height: 8vmin;
}
section.animate-block .square:nth-child(4) {
bottom: 8px;
left: 50px;
width: 5vmin;
height: 5vmin;
}
section.animate-block .square:nth-child(5) {
bottom: 8px;
left: 64px;
width: 6vmin;
height: 6vmin;
}
.control-list ul {
margin-bottom: 1rem;
box-shadow: 0 2px 3px 0 #0005;
border-radius: var(--radius);
}
.control-list ul>li {
background-color: var(--inner-background);
display: block;
border: 1px solid;
border-color: var(--border);
border-bottom: 0;
transition: all 250ms ease-out;
}
.control-list ul>li:first-child {
border-top-left-radius: var(--radius);
border-top-right-radius: var(--radius);
}
.control-list ul>li:last-child {
border-bottom-left-radius: var(--radius);
border-bottom-right-radius: var(--radius);
border-bottom: 1px;
}
.control-list a {
width: 100%;
display: block;
padding: var(--waterfall-margin);
}
.control-list ul>li:hover {
background-color: var(--button-hover-color);
/* var(--container-background); */
}
.control-list ul>li:active {
background-color: var(--button-active-color);
}
a {
cursor: pointer !important;
text-decoration: none !important;
}
.danger {
background-color: #dc3546b0 !important;
}
.danger,
.danger * {
color: white !important;
}
.danger:hover {
background-color: #f0536390 !important;
}
.danger:active {
background-color: #c82333d0 !important;
}
#version,
#dark-mode {
float: right;
appearance: none;
}
#dark-mode::before {
content: '';
width: 40px;
height: 20px;
background: #fff8;
display: block;
border-radius: 10px;