aboutsummaryrefslogtreecommitdiff
path: root/app/static/gen/style.css
blob: 199802d1eb6ae6774ce70acf6c3b7664ee832aa2 (plain) (blame)
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
body {
  background: #282828;
  color: #ebdbb2;
  font-family: monospace;
}

a a:active, a:visited {
  color: #458588;
}

.container {
  margin: auto;
  width: 60%;
}

button,
input[type=submit] {
  border-radius: 8px;
  background-color: #458588;
  border-color: #458588;
  border: none;
  margin: 0.5rem;
}

button.accent {
  background-color: #d79921;
  border-color: #d79921;
}

h1, h2, h3, h4, h5, h6 {
  border-bottom: 1px solid;
  width: 50%;
}

.navbar {
  list-style-type: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid;
  margin-bottom: 2rem;
  padding-bottom: 0.4rem;
  text-align: center;
}

.navbar-item {
  display: inline;
  margin-right: 1rem;
}

.flashes {
  list-style-type: none;
  display: flex;
  justify-content: center;
}

.message {
  width: 80%;
  justify-content: center;
  border: 1px solid #ebdbb2;
  background-color: #d79921;
  padding: 0.2rem;
  font-size: large;
  color: black;
}

form {
  width: 40%;
}

label,
input {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  display: inline-block;
}

label {
  width: 40%;
  text-align: left;
}

label + input {
  width: 40%;
  margin: 0 30% 0 4%;
}

table {
  border-collapse: collapse;
  border-spacing: 10px;
  width: 50%;
}

table td {
  padding-top: 0.5rem;
  padding-left: 1.5rem;
}

td, th {
  border-left: 1px solid #ebdbb2;
  border-bottom: 1px solid #ebdbb2;
  width: 1.5rem;
}

tr:last-child td {
  border-bottom: none;
}

td:first-child, th:first-child {
  border-left: none;
}