blob: aeda780d31160919fdd91065cb5ad13df22327ac (
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
|
* {
margin: 0;
padding: 0;
}
body {
background-image: url('/images/header_background.png');
background-size: auto 300px;
background-attachment: fixed;
line-height: 1.45;
}
header {
background-image: url('/images/header_foreground.png');
background-repeat: no-repeat;
background-size: auto 300px;
height: 300px;
}
header a {
color: transparent;
display: block;
max-height: 500px;
}
main {
background-color: #fff;
padding: 1.414em;
}
h1, h2, h3, h4 {
margin: 1.414em 0 0.5em;
font-weight: 400;
}
p, ul, ol, img {
width: 100%;
margin: 1.414em 0;
max-width: 30em;
}
ul, ol { margin-left: 1.414em; }
h1 { font-size: 3.998em; }
h2 { font-size: 2.827em; }
h3 { font-size: 1.999em; }
h4 { font-size: 1.414em; }
footer {
background-color: pink;
padding: 1.414em;
}
|