-
Notifications
You must be signed in to change notification settings - Fork 0
/
css.css
57 lines (55 loc) · 1.43 KB
/
css.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
@import url('https://fonts.googleapis.com/css2?family=Josefin+Slab:wght@400');
/* -----------------------------------------------------
Progress bar styles from:
Pure CSS Progress Bars https://github.com/rkchauhan/pure-css-progress-bars/
-------------------------------------------------------- */
/* -----------------------------------------------------
CSS Progress Bars
-------------------------------------------------------- */
* {
margin: 0;
}
.cssProgress {
width: 100%;
margin-bottom: 20px;
}
.progress {
position: fixed;
bottom: 0;
overflow: hidden;
width: 100%;
}
.bar {
display: block;
float: left;
width: 0%;
height: 100%;
background: #3798d9;
box-shadow: inset 0px -1px 2px rgba(0, 0, 0, 0.1);
transition: width 0.8s ease-in-out;
background-color: #ffb74d !important;
}
/* -----------------------------------------------------
Progress Bar
-------------------------------------------------------- */
.progress {
background-color: #EEE;
box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
}
.progress .bar {
height: {{barHeight}}px;
}
/* -----------------------------------------------------
Message
-------------------------------------------------------- */
#message {
position: fixed;
right: 4px;
bottom: calc({{barHeight}}px + 1px);
color: white;
font-family: 'Josefin Slab', serif;
font-size: 20px;
text-align: right;
pointer-events: none;
text-shadow: 0px 1px rgba(0, 0, 0, 0.7);
}