-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
executable file
·65 lines (54 loc) · 908 Bytes
/
app.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
*,
*::before,
*::after {
padding: 0;
margin: 0;
}
body {
min-height: 100vh;
background-color: #f8f9fa;
display: flex;
justify-content: center;
font-family: 'Raleway', sans-serif;
}
.container {
padding: 5% 1.5rem;
max-width: 800px;
width: 100%;
}
#app {
display: flex;
flex-wrap: wrap;
}
h1 {
margin-bottom: 2rem;
font-size: 3rem;
}
.slider__legend {
padding: 1rem 3rem 0 0;
list-style: none;
}
.slider__legend h2 {
margin-bottom: 1rem;
}
.slider__legend li {
display: flex;
margin-bottom: 1rem;
}
.slider__legend li span {
display: inline-block;
}
.slider__legend li span:first-child {
height: 20px;
width: 20px;
margin-bottom: -2px;
}
.slider__legend li span:nth-child(2) {
margin: 0 0.5rem;
}
.slider__legend li span:last-child {
font-size: 1.25rem;
font-weight: 600;
font-variant-numeric: tabular-nums lining-nums;
min-width: 60px;
}