-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathloading.css
More file actions
86 lines (70 loc) · 1.21 KB
/
loading.css
File metadata and controls
86 lines (70 loc) · 1.21 KB
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
body {
background: #0081EA;
margin: 0;
font-family: sans-serif;
color: #FFFFFF;
}
.wrapper {
width: 100%;
max-width: 1000px;
margin: 4rem auto;
}
progress {
/* Reset the default appearance */
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
width: 100%;
height: 8px;
/* Firefox */
border: none;
background: #03457B;
box-shadow: 0 2px 3px rgba(0,0,0,0.2) inset;
width: 100%;
}
progress::-webkit-progress-bar {
background: #03457B;
box-shadow: 0 2px 3px rgba(0,0,0,0.2) inset;
}
progress::-webkit-progress-value {
background-color: #EEF0F3;
}
progress::-moz-progress-bar {
background-color: #EEF0F3;
}
.current_time {
margin-top: 4rem;
}
.percentage_value , .value, .label {
margin-top: 0.5em;
}
.percentage_value {
display: inline-block;
}
.value, .label {
font-size: 1.5rem;
}
.label {
color: #03457B;
}
.center {
text-align: center;
}
.time_left {
width: 50%;
margin: 0 auto;
}
.left {
text-align: right;
float: left;
width: 50%;
box-sizing: border-box;
padding-right: 4px;
}
.right {
text-align: left;
float: left;
width: 50%;
padding-left: 4px;
box-sizing: border-box;
}