blob: 47b79f2f079fb7f372784b16ccae3e08612b29fc (
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
/*
* rhrdweb
*
* Copyright (C) 2016 Christian Pointner <equinox@helsinki.at>
*
* This file is part of rhrdweb.
*
* rhrdweb is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* rhrdweb is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with rhrdweb. If not, see <http://www.gnu.org/licenses/>.
*/
body {
font-family: "Droid Sans", Helvetica, Arial, Sans;
margin: 0 0 200px 0;
padding: 0;
}
#header {
background-color: #36373B;
width: 100%;
color: white;
padding: 0.5em 0.3em 0.25em 5em;
margin-bottom: 0.5em;
font-size: 30px;
}
#header h1 {
font-size: 1.2em;
font-weight: bold;
padding-left: 0.3em;
}
#loading-inner {
font-size: 50px;
width: 100px;
margin-top: 5em;
margin-left: auto;
margin-right: auto;
}
#shows {
font-size: 23px;
}
#shows div.row:nth-child(even) {
background-color: #D8D8D8;
}
#shows div.row {
padding: 0.3em 0;
}
#shows div.label {
font-size: 0.8em;
position: relative;
bottom: 0.15em;
}
span.show-title {
white-space:nowrap;
overflow:hidden;
font-weight: bold;
}
span.pv-title {
white-space:nowrap;
overflow:hidden;
font-weight: bold;
}
span.pv-time {
white-space:nowrap;
padding-left: 1em;
font-size: 0.7em;
}
|