summary refs log tree commit diff
path: root/bahnhofshalle/style.css
blob: a4d5a0296348fb2d0a24f5be6bc206bc2f88f661 (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
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 {
    justify-content: center;
  }
}

header {
  padding: 5px 0;
  border-bottom: 5px solid #e1e1e1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: left;
}

header > * {
  margin-right: 10px;
}

header > .fixed-height {
  height: 2.5em;
}

header img {
  max-height: 100%;
}

header > .heading {
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

header h1 {
  font-size: 1.5em;
  margin: 0;
}

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