-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
468 lines (383 loc) · 6.94 KB
/
style.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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
/*
Theme Name: Tumbled
Theme URI: http://davinian.com/wordpress-theme-tumbled
Description: A simple single column theme for Wordpress. Loosely based on the popular Block theme for <a href="http://tumblr.com">Tumblr</a>.
Version: 0.2 Beta
Author: Davinian
Author URI: http://davinian.com/
Theme designed by Davinian http://davinian.com/
The CSS, XHTML and design is released under GPL:
http://www.opensource.org/licenses/gpl-license.php
*/
/* Baisc Stuff */
body {
color: #;
margin: 30px;
background-color: #666;
font-family: 'Lucida Grande', Helvetica, sans-serif;
}
#content {
width: 570px;
margin: auto;
padding: 35px;
background-color: #fff;
}
.entry {
margin-bottom: 50px;
}
a {
color: #ff9900;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
h1 {
padding: 0px;
margin: 0px;
font: Normal 30px Helvetica, sans-serif;
line-height: 33px;
}
#header h1 a {
color: #fff;
text-decoration: none;
}
#header {
background-color: #4AADF0;
margin: -20px -20px 30px -20px;
padding: 20px 25px;
}
#header h1 a:hover {
color: #094E7C;
text-decoration: none;
}
#description {
font-size: 15px;
margin-top: 10px;
color: #094E7C;
text-align: justify;
margin-bottom: 10px;
}
#description a {
color: #094E7C;
}
/* Post Stuff */
.date {
font: Normal 16px Helvetica, sans-serif;
color: #666;
line-height: 32px;
height: 28px;
padding-top: 7px;
background: #fff url('images/stripes.gif') top repeat-x;
border-bottom: dotted 1px #bbb;
margin-bottom: 10px;
text-transform: uppercase;
}
.post {
font-size: 12px;
line-height: 17px;
margin-bottom: 100px;
}
.post h2 {
font-weight: Normal;
font-size: 20px;
color: #222;
margin: 0px 0px 10px 0px;
}
.post h2 a {
color: #222;
text-decoration: none;
}
.post .link {
font: Bold 30px Helvetica, sans-serif;
letter-spacing: -1px;
color: #ff9900;
text-decoration: none;
border-bottom: dotted 1px #ff9900;
line-height: 36px;
}
.post .link .description {
font-weight: normal;
font-size: 14px;
margin-top: 5px;
}
.post .permalink {
position: absolute;
top: 5px;
right: 5px;
display: none;
font-weight: bold;
}
.post:hover .permalink {
display: block;
}
.post .permalink a {
text-decoration: none;
}
.post blockquote {
margin: 20px 0;
padding: 0 20px 0 50px;
background: url('images/quote.png') no-repeat 20px 0;
border: none;
font-size: 28px;
color: #333;
letter-spacing: -1px;
line-height: 105%;
}
.postmetadata {
background-color: #f8f8f8;
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
}
.alt {
background-color: #c9fe64;
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
}
small {
font-family: Arial, Helvetica, Sans-Serif;
font-size: 0.9em;
line-height: 1.5em;
}
.rightcol
{
float: right;
width: 240px;
margin-top: 20px;
}
.leftcol
{
float: left;
width: 220px;
margin-top: 20px;
}
.leftcol ul , .rightcol ul { list-style: none; }
/* IE Stuff (Bad Browser!) */
* html #header {
background-color: #4AADF0;
margin: -20px -20px 30px -20px;
padding: 20px 25px 0;
}
* html #description {
font-size: 15px;
margin-top: 10px;
color: #094E7C;
text-align: justify;
margin-bottom: 5px;
padding: 0;
}
* html .navigation ul {
padding: 0;
margin: 0;
height: 20px;
}
/* Image Stuff */
.post img {
padding: 15px;
background-color: #fff;
border: 15px solid #ccc;
}
img.wp-smiley {
border-width: 0;
border-style: none;
margin: 0;
padding: 0;
background-color: #fff;
vertical-align: top;
}
/* Using 'class="alignright"' on an image will (who would've
thought?!) align the image to the right. And using 'class="centered',
will of course center the image. This is much better than using
align="center", being much more futureproof (and valid) */
img.centered {
display: block;
margin-left: auto;
margin-right: auto;
}
img.alignright {
float: right;
margin: 5px 0 15px 15px;
}
img.alignleft {
float: left;
margin: 5px 15px 15px 0;
}
.alignright {
float: right;
}
.alignleft {
float: left
}
/* Navigation Stuff */
.navigation {
margin: 0 0px 2px;
text-align: center;
font-size: 18px;
height: 20px;
}
.navigation a {
text-decoration: none;
color: #222;
}
.navigation a:hover {
text-decoration: underline;
}
.navigation .alignright {
float: right;
}
.navigation .alignleft {
float: left
}
.navigation ul {
padding: 0;
margin: 10px 0 0;
height: 20px;
}
ul#nav {
list-style: none;
padding: 0 0 1px;
float: left;
width: 100%;
left: 0;
margin: 0 0 10px;
}
ul#nav li {
padding: 0.85em 20px 0.7em 0;
text-transform: uppercase;
float: left;
font: bold .8em Helvetica, sans-serif;
letter-spacing: 1px;
margin: 0;
}
ul#nav li a, ul#nav li a:visited {
color: #094E7C;
text-decoration: none;
}
ul#nav li a:hover {
color: #fff;
text-decoration: none;
}
ul#nav li.current_page_item a {
color: #fff;
text-decoration: none;
}
ul#nav li.rss {
padding: 0.85em 0 0.7em 0;
float: right;
background-repeat: no-repeat;
}
ul#nav li.rss a {
padding: 0 28px 0 0;
background: url(images/icon_rss-off.png) no-repeat 100% 50%;
}
ul#nav li.rss a:hover {
padding: 0 28px 0 0;
background: url(images/icon_rss-on.png) no-repeat 100% 50%;
}
/* List Stuff */
.post ul {
margin: 0px;
padding: 1px 1px 1px 28px;
}
.post ul li {
font-size: 12px;
padding: 4px 0px 4px 0;
color: #000;
}
.post ol {
padding: 1px 1px 1px 28px;
}
.post ol li {
font-size: 12px;
padding: 4px 0px 4px 0;
color: #000;
}
/* Form Stuff */
#searchform {
margin: 10px auto;
padding: 5px 3px;
text-align: center;
}
#sidebar #searchform #s {
width: 108px;
padding: 2px;
}
#sidebar #searchsubmit {
padding: 1px;
}
.entry form { /* This is mainly for password protected posts, makes them look better. */
text-align:center;
}
select {
width: 130px;
}
#commentform input {
width: 170px;
padding: 2px;
margin: 5px 5px 1px 0;
}
#commentform textarea {
width: 100%;
padding: 2px;
}
#commentform #submit {
margin: 0;
float: right;
}
/* Comment Stuff*/
.alt {
margin: 0;
padding: 10px;
}
.post .commentlist {
padding: 0;
text-align: justify;
}
.commentlist p {
margin: 10px 5px 10px 0;
}
.post .commentlist li {
margin: 15px 0 3px;
padding: 15px 20px 5px;
list-style: none;
}
#commentform p {
margin: 5px 0;
}
.nocomments {
text-align: center;
margin: 0;
padding: 0;
}
.commentmetadata {
margin: 0;
display: block;
}
/* Footer Stuff */
#footer {
margin: 20px 0px 0px 0px;
text-align: center;
font-size: 18px;
}
#footer a {
text-decoration: none;
color: #222;
}
#footer a:hover {
text-decoration: underline;
}
#footer p.tiny {
margin: 30px 0px 0px 0px;
font-size: 10px;
line-height: 14px;
color: #666;
}
#footer p.tiny a {
text-decoration: none;
}
#footer p.tiny a:hover {
text-decoration: underline;
}
/*Prevention is better than cure!
If you find a problem with this theme and or css style sheet, please let me know so I can fix it for future generations.
*/