-
Notifications
You must be signed in to change notification settings - Fork 5
/
style.css
85 lines (74 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
73
74
75
76
77
78
79
80
81
82
83
84
85
html {
height: 100%;
background: #eeeeee;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
body {
margin: 0;
padding: 0;
position: relative;
min-height: 100%;
font-size: 22px;
background: #4596bf;
color: #f0f0f0;
}
.site-header {
background: #4596bf;
padding-top: 20px;
padding-bottom: 20px;
border-bottom: 1px;
border-bottom-style: solid;
border-bottom-color: #235c79;
text-align: center;
font-size: 20px;
}
section.vbrotations
{
background: #63b6e0;
padding-top: 10px;
padding-bottom: 10px;
color: #ffffff;
}
section.notes {
background: #4596bf;
border-top: 1px solid #235c79;
padding-top: 20px;
padding-bottom: 120px;
margin-bottom: auto;
}
div.container {
max-width: 900px;
margin-left: auto;
margin-right: auto;
padding-left: 3px;
padding-right: 3px;
}
footer.footer {
background: #235c79;
color: #4596bf;
padding: 15px;
margin-top: 60px;
text-align: right;
font-size: 18px;
vertical-align: middle;
position: absolute;
right: 0;
bottom: 0;
left: 0;
}
a:link {
color: inherit;
}
a:visited {
color: inherit;
}
a:hover {
color: inherit;
}
a:active {
color: inherit;
}
li {
margin-left: 1.12em;
}