summary refs log tree commit diff
path: root/bahnhofshalle/style.css
blob: 90e41cede1027fff75ff38f1aa70318c5202b149 (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
body {
  font-family: sans-serif;
  color: #333333; /* openlab text gray */
  margin: 0;
}

header, main, footer {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 800px) {
  header {
    align-items: center;
    justify-content: space-around;
  }
}

header {
  padding: 5px 0;
  border-bottom: 5px solid #e1e1e1;
  display: flex;
  flex-wrap: wrap;
  height: 30px;
}

header img,
#heading h1 {
  max-height: 30px;
  margin: auto 5px;
  font-size: 20px;
}

a:visited, a:link {
  color: #006845; /* openlab logo green */
}

h3:target {
  /* highlight a FAQ heading when selected via a link */
  text-decoration: underline;
}

.table-container {
  max-width: 100%;
  overflow: auto;
  min-height: 40vh;
}

#view-queue table {
  width:100%;
  border-spacing: 0;
}

#view-queue thead {
  background-color: #e1e1e1;
}

#view-queue thead td {
  border-bottom: 1px solid #333333;
}

#view-queue td {
  margin: 0;
  padding: 10px;
}

#view-queue td:nth-last-child(1) {
  text-align: right;
}

.input-button {
  display: flex;
}

.input-button input[type="text"] {
  flex: 1;
}

#controls {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
  border-top: 1px solid #333333;
}

#controls > div {
  margin: 5px;
}