-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathmain.css
More file actions
52 lines (45 loc) · 1020 Bytes
/
main.css
File metadata and controls
52 lines (45 loc) · 1020 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
50
51
52
.loader-60devs {
position: fixed;
top: 0;
left: 0;
right: 0;
height: 2px;
width: 100%;
z-index: 10000;
opacity: 1;
transition: opacity 250ms 250ms;
}
.loader-60devs .loader-60devs-progress {
height: 2px;
width: 100%;
background-color: #039be5;
transition-property: transform, opacity;
transition-duration: 12s;
transition-timing-function: cubic-bezier(0.04, 0.9, 0.11, 0.9);
transform: translateX(-100%);
}
.loader-60devs[data-state="hidden"] {
display: none;
transition: none;
}
.loader-60devs[data-state="hidden"] .loader-60devs-progress {
transition: none;
}
.loader-60devs[data-state="running"]::before {
content: '';
position: fixed;
z-index: 99999999;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.loader-60devs[data-state="running"] .loader-60devs-progress {
transform: translateX(0);
}
.loader-60devs[data-state="finishing"] {
opacity: 0;
}
.loader-60devs[data-state="finishing"] .loader-60devs-progress {
transform: scaleX(100) translateX(0);
}