summaryrefslogtreecommitdiff
path: root/public/assets/css/css.css
blob: e64600efd9c5e39dc708564d1d2f38d988afef07 (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
html,body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: sans-serif;
}
.header {
  width: 100%;
  padding: 5px;
  background: black;
  color: white;
}
.modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0; left: 0;
  background: rgba(0,0,0,0.9);
  display: none;
}
.modal.visible {
  display: block;
}
.modal .inner {
  padding: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%,-50%,0);
  background: white;
  border-radius: 4px;
}

label {
  width: 150px;
  display: inline-block;
}
input {
  width: 200px;
  font-size: 15px;
  border: 1px solid #888;
  font-family: sans-serif;
  padding: 5px;
}
textarea {
  width: 350px;
  padding: 5px;
  font-size: 15px;
  border: 1px solid #888;
}