-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.css
63 lines (52 loc) · 940 Bytes
/
common.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
html {
font-size: 200%;
background: var(--background);
font-family: 'Roboto', sans-serif;
color: var(--color);
text-align: center;
--width: 20rem;
}
@media (min-width: 80rem) {
html {
font-size: 62.5%;
}
}
* {
font-family: 'Roboto', sans-serif;
}
h1 {
font-size: 3.2rem;
}
.form {
max-width: var(--width);
margin: auto;
font-size: 2rem;
}
.form > * {
margin: 0.2rem;
}
.form > input, .form > select, .form > button {
display: block;
background: var(--element-background);
color: var(--element-color);
border: none;
width: 100%;
padding: 0.5rem;
border-radius: 1rem;
font-size: 2rem;
}
.form > button {
padding: 1rem;
}
.form > hr {
margin: 1rem 0rem;
}
.form > h1 {
margin-top: 3.2rem;
}
.form > input:hover, .form > select:hover, .form > button:hover, .form > input:focus, .form > select:focus, .form > button:focus {
background: var(--element-selected-background);
}
footer {
margin-top: 3.2rem;
}