-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
73 lines (71 loc) · 1.14 KB
/
styles.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
body {
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
align-items: center;
justify-content: center;
}
.title {
font-size: 3rem;
margin-bottom: 1rem;
font-family: "Andada Pro", "Trebuchet MS", "Lucida Sans Unicode",
"Lucida Grande", "Lucida Sans", Arial, sans-serif;
}
.wrap {
width: 100%;
height: auto;
display: flex;
justify-content: center;
align-items: center;
}
#eta {
content: "00:15:00";
font-size: 1rem;
color: #666;
width: fit-content;
height: fit-content;
margin: 0 0 0.5rem;
}
.progress {
display: flex;
width: 50%;
height: 1.2rem;
border: 1px solid #000;
padding: 0;
}
.progress > div {
margin: 0;
padding: 0;
}
#done {
background: #e67e7e;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
50% {
transform: rotate(180deg);
}
100% {
transform: rotate(360deg);
}
}
#spinner {
width: 1.3rem;
color: #444;
transform-origin: center;
animation: infinite linear spin 3s;
margin-left: 1rem;
}
.footer {
position: fixed;
left: 50%;
bottom: 0;
width: 100%;
transform: translateX(-50%);
text-align: center;
}