blob: affde4c0ccdcc837d70dfe829205761fb31d8b5f (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
body {
font-family: sans-serif;
font-size: 3vmin;
color: white;
background-color: black;
}
div {
margin: 1em;
padding: 1em;
border: 1px solid #333;
border-radius: 1em;
}
img,
video {
max-width: 100%;
max-height: 80vh;
display: block;
margin-left: auto;
margin-right: auto;
}
form {
display: inline;
}
button {
font-size: 1.5em;
background-color: #BBB;
border-radius: 0.5em;
}
h1 button {
font-size: 0.5em;
}
a {
color: #888;
}
textarea {
width: 50vw;
height: 50vh;
display: block;
}
@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;
}
}
|