blob: 1d374ac790559ea2466b3356c650a604ca6e526b (
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
/* apply a natural box layout model to all elements */
*, *:before, *:after {
-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}
html {
position: relative;
min-height: 100%;
}
body {
margin: 0 0 100px;
background-color: #F4F4F4;
padding: 0 20px;
font-size: 15px;
font-family: DejaVu Sans
}
a {
color: #146E90;
font-size: 97%;
text-decoration: none;
}
a:hover {
color: #023244;
}
p {
padding: 0 20px;
text-align: left;
font-size: 17px;
}
header {
display: flex;
}
header h1 {
flex: 1;
}
header h1 a {
color: #000;
}
header nav {
display: flex;
align-items: center;
width: auto;
padding-right: 20px;
}
header nav ul {
list-style: none;
display: flex;
text-align: right;
}
header nav ul li {display: inline; margin-left: 10px; font-size: 17px;}
.about,
.contact {
padding-bottom: 1px;
}
.blog {margin-bottom: -10px;}
.post-list ul {
padding: 0 20px;
}
.post-list ul li {
list-style: none;
}
.post-list .date {
font-size: 15px;
color: #4D4D4D;
}
.post-list a {
font-size: 17px;
}
footer {
position: absolute;
left: 0;
bottom: 0;
height: auto;
width: 100%;
}
footer p {
position: absolute;
left: 0px;
bottom: 0;
font-size: 13px;
font-weight: bold;
color: #4D4D4D;
}
footer #emblem {
position:absolute;
bottom: 0;
right: 0;
}
|