blob: f58e87b535c502f87a7fda7749638a414faada44 (
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
/*@font-face
{
font-family: Jost;
src: url('/Jost-400-Book.otf');
}*/
html {
background: #d8f0ff;
font-family: sans-serif;
}
#container {
background: white;
margin: 2em auto;
box-shadow: 0px 0px 12px 4px lightgray;
width: 1024px;
max-width: 97%;
}
#header {
padding: 1.2em;
}
#logo {
float: right;
height: inherit;
}
#menu {
background: #555;
border-bottom: 3px solid #0066cc;
}
.menu-item {
display: inline-block;
color: white;
border-left: 1px solid gray;
padding: 0.5em 1em;
font-weight: bold;
text-decoration: none;
}
.menu-item:first {
border-left: 0;
}
.menu-item:hover {
background: #0066cc;
}
.content {
padding: 0.75em 1.5em;
font-size: 1.2em;
}
#footer {
font-size: 6px;
color: lightgray;
text-align: right;
}
#title {
border-bottom: 1px solid lightgray;
height: 60px;
position: relative;
margin-bottom: 0.2em;
}
#subtitle {
color: gray;
}
h1 {
margin-bottom: 0.2em;
position: absolute;
bottom: 0;
font-size: 2.5em;
color: black;
}
img {
max-width: 100%;
}
table {
width: 100%;
}
td {
vertical-align: top;
min-width: 240px;
}
td:first-child {
padding-right: 2em;
}
|