blob: 73528edba22c55ef70c9cb95581ebc00797ff3d3 (
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
|
body {
font-family: sans-serif;
font-size: 3vmin;
}
img,
video {
max-width: 100%;
max-height: 80vh;
display: block;
margin-left: auto;
margin-right: auto;
}
form {
display: inline;
}
button {
font-size: 1.5em;
}
a {
color: #888;
}
@media (orientation: landscape) {
button {
font-size: 1em;
}
}
@media (min-width: 1500px) {
body {
font-size: 1.25em;
}
}
@media (orientation: portrait) and (min-width: 1000px) {
body {
font-size: 1.25em;
}
button {
font-size: 1em;
}
}
|