summaryrefslogtreecommitdiff
path: root/public/app.css
blob: 927cdf2f7d8d327c5e5f1d90e8ef08dee5ae25f8 (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
69
70
71
72
73
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.5;
  font-size: 15px;
}

h1 {
  margin: 0 0 10px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.9);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.1s;
}

.modal.visible {
  pointer-events: auto;
  opacity: 1;
}

.inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) translateZ(0);
  background: white;
  box-shadow: 0 1px 1px #888;
  padding: 20px;
}

.modal .close {
  position: absolute;
  top: 5px;
  right: 10px;
  background: white;
  cursor: pointer;
}

input, input[type=submit], button {
  border: 1px solid #888;
  color: black;
  background: white;
  font-size: 15px;
  line-height: 1;
  padding: 5px;
  margin: 5px;
}

input[type=submit], button {
  border-color: black;
  border-radius: 4px;
}

.error {
  color: red;
}