blob: aac84188348c507a8732d72df08d9b19b8a2ae05 (
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
|
body {
background-color: #222;
color: #bbb;
}
header, details,.news_comment details, .news details {
background-color: #333;
}
#logo {
background-image: url('../pic/engelsystem_logo_30c3.png');
}
a {
color: #fff;
}
#menu li.selected a,.toolbar a.selected,#menu li a:hover,.toolbar a:hover
{
color: #090;
}
.form input[type="text"],.form input[type="password"],.form textarea {
background-color: #333;
}
.error,.success,.info {
background-color: #333;
}
th,.hidden {
background-color: #333;
}
tr:hover>td {
background-color: #333;
}
.selection ul li:nth-child(2n) {
background-color: #333;
}
#shifts {
background-color: #222;
}
#shifts td.free {
background-color: #322;
}
#shifts td.occupied {
background-color: #232;
}
#shifts td.own {
background-color: #223;
}
#shifts td.collides {
background-color: #333;
}
a.button {
background-color: #000;
}
|