-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (46 loc) · 865 Bytes
/
style.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
* {
box-sizing: border-box;
font-family: 'Open Sans', sans-serif;
line-height: 1.5;
}
body {
margin: 1rem;
}
.text p {
font-size: 1.15rem;
}
header, .text, form, footer {
margin: 0 auto;
max-width: 32rem;
}
.canvas-container {
margin: 0 auto;
max-width: 64rem;
}
h2 {
margin-top: 1.75rem;
}
form {
background-color: hsl(0, 0%, 95%);
/* border: 1px solid lightgrey; */
margin-bottom: 1.25rem;
margin-top: 1.25rem;
padding: 0.2rem 0.5rem 0.5rem 0.5rem;
text-align: center;
}
input[type='range'] {
margin-right: 1rem;
position: relative;
top: 0.4rem;
/* width: 14rem; */
}
/* input[type='submit'] {
padding: 0.25rem;
} */
.stat {
font-weight: bold;
}
footer {
border-top: 1px solid grey;
margin-top: 2rem;
}