-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
74 lines (60 loc) · 936 Bytes
/
main.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
66
67
68
69
70
71
72
73
74
body {
margin: 1em;
}
header h1 {
display: flex;
font-size: revert;
align-items: center;
}
table {
border: 0.1em solid;
padding: 1em;
}
table, #duration {
margin: 1em;
border-radius: 3px;
}
td {
padding: 0.25em;
}
table button {
display: inline-block;
width: 3em;
height: 3em;
font-size: 1em;
}
input, button {
font-size: 1em;
}
#duration {
text-align: left;
max-width: 240px;
}
#duration label {
display: block;
}
#current-tone-wrapper {
font-size: 5em;
}
@media only screen and (max-width: 800px) {
html {
}
body {
font-size: 3em;
text-align: center;
}
header h1 {
justify-content: center;
}
table {
font-size: 4vw;
margin-left: auto;
margin-right: auto;
}
#duration {
max-width: 100%;
}
#current-tone-wrapper {
font-size: 2em;
}
}