blob: e5878816c4ffb67aaa04a0c0865a9f12dfb6c1e9 (
plain)
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
|
* {
box-sizing: border-box;
}
html {
font-size: 100%;
}
body {
font-family: "Cooper Black", serif;
font-weight: bold;
max-width: 50rem;
margin: 0 auto;
padding: 1rem;
}
.counter {
padding: 2rem;
text-align: center;
font-size: 2.5rem;
font-weight: 900;
}
.counter_title {
display: block;
font-size: 1.2em;
}
.counter_value {
display: block;
margin: 0;
font-weight: 900;
font-size: 2.5em;
}
.counter_mornings {
display: block;
}
.progress-bar_label {
display: inline-block;
width: 100%;
text-align: center;
}
.progress-bar_bar {
height: 1.2rem;
border-radius: 5px;
border: 1px solid black;
background-color: lightgrey;
}
.progress-bar_value {
background-color: green;
height: 100%;
border-radius: 5px;
}
|