-
Notifications
You must be signed in to change notification settings - Fork 2
/
stylesheet.css
261 lines (254 loc) · 5.42 KB
/
stylesheet.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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
body {
width: 60%;
min-width: 600px;
margin: 0 auto 1em;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
a:link, a:visited {
text-decoration: none;
font-weight: bold;
color: #204a87;
padding: 0 1px;
}
a:hover, a:focus, a:active {
color: #729fcf;
}
#menu {
margin: 0;
padding: 0.5em 1em;
border-bottom: 1px solid #d3d7cf;
border-left: 1px solid #d3d7cf;
border-right: 1px solid #d3d7cf;
background-color: #eeeeec;
}
#menu li {
display: inline;
list-style-type: none;
margin-right: 1em;
}
h1 {
padding: 0.25em 0.5em;
margin: 0.5em auto 0.5em;
font-size: 3em;
font-family: "Warnock Pro", "Goudy Old Style", "Palatino", Georgia, serif;
font-style: italic;
text-align: center;
-moz-border-radius: 12px 12px 0 0;
}
h1 a:link, h1 a:visited {
color: #3465a4;
}
#content {
border-top: 1px solid #d3d7cf;
border-bottom: 1px solid #d3d7cf;
background-color: #eeeeec;
position: relative;
}
#content h2 {
margin: 0;
padding: 0.5em 2em;
font-family: "Warnock Pro", "Goudy Old Style", "Palatino", Georgia, serif;
font-style: italic;
font-size: 2em;
}
#content .entry {
position: relative;
}
#content .entry > p.date {
position: absolute;
top: -1.75em;
right: -2.5em;
width: 3em;
font-weight: bold;
text-align: center;
color: white;
padding: 0.5em 1em;
margin: 0;
background-color: #4e9a06;
border: 1px solid #8ae234;
-moz-border-radius: 16px;
-webkit-border-radius: 16px;
}
#content .entry > p.date .day {
font-size: 1.75em;
display: block;
}
#content .entry > p.date .month {
font-size: 1.5em;
font-family: "Warnock Pro", "Goudy Old Style", "Palatino", Georgia, serif;
font-style: italic;
font-weight: bold;
}
#content .entry > .body {
margin: 0 4em 1em 2em;
padding: 0.25em 1.25em;
background-color: #fdfdfb;
border-top: 1px solid #d3d7cf;
font-size: 1.15em;
line-height: 160%;
color: #555753;
}
#content .entry > .body h3 {
margin: 1em 0 0;
}
#content .entry > .body pre {
background-color: #000023;
color: #d3d7cf;
font-family: Monaco, "DejaVu Sans Mono", monospace;
font-size: 0.9em;
padding: 0.25em 0.5em;
border: 2px solid #204a87;
width: 90%;
margin: 1em auto;
line-height: 130%;
}
#content .entry > .body code, #content .entry > .body kbd {
background-color: #000023;
color: #d3d7cf;
font-family: Monaco, "DejaVu Sans Mono", monospace;
padding: 1px 4px;
font-size: 0.9em;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
#content .entry > .body .vignette {
display: block;
margin: 1em auto;
border: 2px solid #babdb6;
padding: 2px;
background-color: #eeeeec;
}
#content .entry > .tags {
margin: 0;
padding: 0;
position: absolute;
top: 5em;
right: -10em;
width: 10em;
text-align: left;
}
#content .entry > .tags li {
display: block;
margin: 0 0 8px;
}
#content #comments .comment {
margin: 0 6em 1em 4em;
background-color: #f8f8f6;
border-top: 1px solid #babdb6;
font-size: 1em;
line-height: 160%;
color: #555753;
position: relative;
}
#content #comments .comment .author {
margin: 0;
padding: 0.10em 0.5em;
background-color: #d3d7cf;
color: #2e3436;
}
#content #comments .comment .date {
position: absolute;
top: -0.9em;
right: 0.5em;
}
#content #comments .comment .body {
padding: 0.25em 1.25em;
}
#content #comments h3 {
margin: 1em 6em 0.5em 2.5em;
color: #555753;
}
#content #comments #add_comment {
margin: 0 6em 1em 4em;
}
#content #comments #add_comment label {
font-weight: bold;
color: #555753;
}
#content #comments #add_comment input[type=text], #content #comments #add_comment textarea {
display: block;
border: 1px solid #babdb6;
background-color: #fdfdfb;
color: #555753;
padding: 2px 4px;
}
#content #comments #add_comment input[type=text], #content #comments #add_comment textarea, #content #comments #add_comment input[type=submit] {
margin: 0.25em 0.5em 0.5em;
}
#content #comments #add_comment input[type=text] {
width: 50%;
}
#content #comments #add_comment textarea {
width: 75%;
}
#content #comments #add_comment #comment_rcaptcha {
display: none;
}
#content .tags a:link, #content .tags a:visited {
background-color: #204a87;
color: #ccf9ff;
border-left: 2px solid #0c3673;
padding: 2px 6px 2px 4px;
text-decoration: none;
-moz-border-radius: 0 5px 5px 0;
-webkit-border-radius: 0 5px 5px 0;
}
#content .tags a:hover, #content .tags a:focus, #content .tags a:active {
background-color: #3465a4;
border-color: #205190;
}
#content #nav {
text-align: center;
font-size: 1.5em;
font-weight: bold;
padding: 0.25em 1em;
}
#content #page {
margin: 1em 2em;
padding: 0.25em 1.25em;
background-color: #fdfdfb;
border-top: 1px solid #d3d7cf;
font-size: 1.15em;
line-height: 160%;
color: #555753;
}
#content #entries {
margin: 0 2em 1em;
padding: 0.25em 1.25em 0.25em 2em;
background-color: #fdfdfb;
border-top: 1px solid #d3d7cf;
font-size: 1.25em;
line-height: 160%;
color: #555753;
}
#content #entries .date {
font-size: 0.9em;
}
#content #entries .tags {
margin: 0;
padding: 0;
display: inline;
font-size: 0.6em;
}
#content #entries .tags li {
display: inline;
margin: 0;
}
#a-propos {
margin: 1em auto;
}
#a-propos img {
float: left;
border: 1px solid #2e3436;
margin-right: 1em;
margin-bottom: 1em;
}
#a-propos p:first-child {
margin-top: 0;
}
#a-propos p:last-child {
margin-bottom: 0;
}
#footer {
color: #888a85;
}