blob: 934034d0f7a907a17188468b25fd71222aadb488 (
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
|
body.background {
background: #000532;
}
footer, footer a {
color: #fff;
}
#body {
background: #fff;
border: 1px solid #fff;
border-radius: 2px;
padding: 20px;
margin: 0 20px;
}
.content {
background: transparent;
}
#logo {
background: url('../pic/engelsystem_logo_29c3.png') top left no-repeat #fff;
display: block;
height: 100px;
margin: 10px;
width: 900px;
}
tr:hover > td {
background-color: #f0f0f0;
}
.selection ul li.heading {
text-align: center;
font-weight: bold;
}
.selection ul li:nth-child(even) {
background: #f0f0f0;
}
.error {
background: #fff;
border-color: #ed1a3b;
color: #ed1a3b;
font-weight: bold;
}
.success {
background: #fff;
border-color: rgb(0, 178, 107);
color: rgb(0, 178, 107);
font-weight: bold;
}
|