summaryrefslogtreecommitdiff
path: root/public/style.css
blob: 98d83b553df40bc47923ac2b54635d511b963513 (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
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;
}

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;
  }
}