-
Notifications
You must be signed in to change notification settings - Fork 0
/
Style.css
72 lines (60 loc) · 1.2 KB
/
Style.css
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
/*---------------------------------------------
Image
---------------------------------------------*/
img.center {
display: block;
margin-left: auto;
margin-right: auto;
}
/*---------------------------------------------
Headline
---------------------------------------------*/
h1 {
font-size: 1.8em;
margin: 10px;
padding-top: 25px;
padding-bottom: 10px;
}
h2 {
font-size: 1.4em;
margin: 5px;
padding-top: 20px;
padding-bottom: 10px;
}
h3 {
font-size: 1.2em;
margin: 2px;
padding-top: 15px;
padding-bottom: 5px;
}
/*---------------------------------------------
Table
---------------------------------------------*/
table {
border-collapse: collapse;
width: 100%;
}
th {
background-color: #808080;
color: white;
}
th, td {
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
td.fixedwidth {
width: 200px;
}
/*---------------------------------------------
Footer
---------------------------------------------*/
footer {
border-top: solid 0.05em;
padding-top: 25px;
bottom: 0;
left: 0;
right: 0;
}