blob: 2c4cb243746faf34db7c3daab828291a8884c395 (
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
100
101
102
103
104
105
106
107
108
109
110
111
|
/* 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 {
display: flex;
flex: 1;
flex-direction: column;
background-color: #F4F4F4;
margin: 0 0 100px;
padding: 0 20px;
font-size: 15px;
font-family: Sans
}
a {
color: #146E90;
font-size: 97%;
text-decoration: none;
}
a:hover {
color: #023244;
}
p {
padding: 0 20px;
text-align: left;
font-size: 16px;
}
h2 {
font-size: 20px;
}
header {
display: flex;
}
header h1 {
flex: 1;
font-size: 30px;
}
header h1 a {
color: #000;
}
header nav {
flex: 1;
display: flex;
width: auto;
padding-right: 10px;
align-items: center;
justify-content: flex-end;
}
header nav li {
display: inline;
margin: 0px 6px;
list-style: none;
text-align: center;
}
#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;
margin: 0 0 5px 15px;
padding: 0;
left: 0px;
bottom: 0px;
font-size: 12px;
font-weight: bold;
color: #4D4D4D;
}
footer #emblem {
position:absolute;
bottom: 0;
right: 0;
}
|