summaryrefslogtreecommitdiffstats
path: root/static/style.css
blob: 42f6f4d337969b7eeb9180d9025796128260980a (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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
    -ms-text-size-adjust:100%;
}

body {
	width: 90%;
	max-width: 1200px;
	margin: 2em auto 1em;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 14px;
	line-height: 20px;
	color: #333333;
}

header {
	border-bottom: 1px solid crimson;
	margin-bottom: 2em;
}

a {
	color:#0088cc;
	text-decoration:none;
}

a:hover, a:focus {
	color:#005580;
	text-decoration:underline;
}

ul, li {
	list-style: none;
}

ul, ol {
	padding-left: 0;
}

h1 {
	font-size : 250%;
	padding: 0;
	margin: 0;
	line-height: 1.4em;
}

h2 {
	font-size : 110%;
	background: crimson;
	margin: 1em 0 0;
	padding: 0.5em;
	color: #fff;
	border-top-left-radius: 0.5em;
	border-top-right-radius: 0.5em;
}

h3 {
	font-size : 110%;
}

table {
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 0.5em;
	border-collapse: collapse;
	box-shadow: 0 1px 3px #eee;
	margin-bottom: 2em;
}

tr(even) {
	background-color: #fafafa;
}

td, th {
	text-align: left;
	padding: 0.25em 0.5em;
	border-bottom: 1px solid #ddd;
	border-collapse: collapse;
	vertical-align: top;
}

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

th {
	background: #eee;
	padding: 0.5em;
}

hr {
	display: none;
}

footer {
	text-align: center;
	margin-top: 1em;
}

form {
	text-align: center;
	padding: 1em 0;
	margin: 1em 0;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

span.red { color: red; }
span.purple { color: purple; }
span.green { color: green; }
span.dangerous { color: rgb(191,127,0); }

@media all and (max-width: 641px) {
	body {
		font-size: 13px;
	}
	table {
		table-layout: fixed;
	}
	td, th {
		overflow: hidden;
	}
}

@media all and (min-width: 641px) {
	header {
		background: url(/tracker/logo.png) top right no-repeat;
		min-height: 60px;
	}
	h1 {
		line-height: 2.4em;
	}
}

© 2014-2024 Faster IT GmbH | imprint | privacy policy