-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
136 lines (129 loc) · 2.61 KB
/
main.css
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
.bigtitle {
font:bold;
font-size:75px;
font-family: monospace;
text-align:center;
padding:80px;
color:aliceblue;
}
body {
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
overflow: hidden;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
color: white;
}
#canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
}
.overlay {
position: relative;
z-index: 1;
text-align: center;
margin-top: 20%;
display:center;
text-align: center;
margin-left: 0 auto;
margin-right: 0 auto;
}
.overlay h1 {
font-size: 3em;
margin: 0;
color: #00ff00;
text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
margin-left: 0 auto;
margin-right: 0 auto;
display:center;
}
.overlay h5 {
font-size: 1.5em;
margin: 0;
color: #00ff00;
text-shadow: 0 0 5px #00ff00;
margin-left: 0 auto;
margin-right: 0 auto;
display: center;
}
.loader {
height: 30px;
position:fixed;
top:50%;
left:50%;
width: 60px;
display: flex;
align-items: flex-start;
aspect-ratio: 1;
}
.loader:before,
.loader:after {
content: "";
flex: 1;
aspect-ratio: 1;
--g: conic-gradient(from -90deg at 10px 10px,#fff 90deg,#0000 0);
background: var(--g), var(--g), var(--g);
filter: drop-shadow(30px 30px 0 #fff);
animation: l20 1s infinite;
}
.loader:after {
transform: scaleX(-1);
}
@keyframes l20 {
0% {background-position:0 0, 10px 10px, 20px 20px}
33% {background-position:10px 10px}
66% {background-position:0 20px,10px 10px,20px 0 }
100% {background-position:0 0, 10px 10px, 20px 20px}
}
.loader1 {
height: 30px;
position:fixed;
top:30%;
left:45%;
width: fit-content;
font-weight: bold;
font-family: monospace;
font-size: 40px;
background:linear-gradient(90deg,#000 50%,#0000 0) right/200% 100%;
animation: l21 1s infinite linear;
}
.loader1::before {
content :"Loading...";
color: #0000;
padding: 0 5px;
background: inherit;
background-image: linear-gradient(90deg,#fff 50%,#000 0);
-webkit-background-clip:text;
background-clip:text;
}
@keyframes l21{
100%{background-position: left}
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.passwordinput{
display:center;
size: 100%;
text-align:center;
padding:8px;
margin: 0 auto;
margin-left: 0 auto;
margin-right: 0 auto;
}