-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (42 loc) · 797 Bytes
/
style.css
File metadata and controls
49 lines (42 loc) · 797 Bytes
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
body{
background-color: #000;
}
.loader{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.scanner span {
color: transparent;
font-size: 100px;
position: relative;
overflow: hidden;
font-family: serif;
}
.scanner span::before {
content: "Loading...";
position: absolute;
top: 0;
left: 0;
width: 0;
height: 100%;
border-right: 4px solid #17FEFF;
overflow: hidden;
color: #17FEFF;
animation: load 4s linear infinite;
}
@keyframes load {
0%, 10%, 100% {
width: 0;
}
10%,20%,30%,40%,50%,60%,70%,80%,90%,100% {
border-right-color: transparent;
}
11%,21%,31%,41%,51%,61%,71%,81%,91% {
border-right-color: #17FEFF;
}
60%, 80% {
width: 100%;
}
}