GenkiTheme風格字型加大

自從主機搬家之後就換了新的風格,
發現GenkiTheme整體來說還算清爽,
唯讀字型有點小了點,於是在style.css檔案內做了一點小修正。

font-size: 100%;
此風格的字型是由百分比控制,
且若是調大百分比,所有的字型(含文章標題及標籤)皆會集體放大。
font-size: 1.3em;
font-size: 0.95em;
故須先將文章標題及標籤的字型調小,
再調大百分比,即可將文章標題、標籤及內容的字型集體放大。

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
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
/*
Theme Name: GenkiTheme - Fixed Width
Theme URI: http://ericulous.com/2007/09/11/wp-theme-genkitheme-fixed-width/
Description: Clean Soothing Fixed 3 Columns
Version: 1.5
Author: Genkisan
Author URI: http://ericulous.com/
Tags: white, fixed width, three columns, widgets
*/
 
body {
background: #ebe9db url(images/bg.gif) repeat-x;
color: #555;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 100%;
line-height: 1.6;
margin: 15px 0 0 0;
padding: 0;
}
 
a {
color: #2175BC;
text-decoration: none;
}
 
a:hover {
color: #FF7400;
}
 
img {
border: 0;
}
 
h1, h2, h3 {
font-size: 1.5em;
font-family: "Trebuchet MS", Georgia, Tahoma, serif;
font-weight: normal;
letter-spacing: -1px;
}
 
h4 {
font-size: 1.2em
}
 
h5 {
font-size: 1.1em
}
 
h6 {
font-size: 1em
}
 
/* Top Menu */
#tabs {
height: 32px;
margin: 0 auto -7px auto;
overflow: hidden;
padding: 0;
width: 950px;
}
 
#tabs ul {
margin: 0;
padding: 0 0 0 20px;
width: 950px;
float: left;
}
 
#tabs li {
display: inline;
height: 32px;
margin: 0;
}
 
#tabs li a {
background: transparent url(images/bg_sidetab.gif) no-repeat;
color: #fff;
font-family: Tahoma, "Trebuchet MS", sans-serif;
font-size: 12px;
float: left;
height: 25px;
padding: 3px 8px 0 0;
text-align: center;
width: 60px;
}
 
#tabs li a:hover {
background: transparent url(images/bg_sidetab.gif) no-repeat 0px -34px;
}
 
#tabs .sidetab_alt a {
background: url(images/feed.gif) no-repeat -35px 0px;
height: 25px;
width: 26px;
}
 
#tabs .sidetab_alt a:hover {
background: url(images/feed.gif) no-repeat 0px 0px;
}
 
/* Header */
#header {
background: #dcdcdc url(images/header.jpg);
height: 200px;
margin: 20px;
width: 910px;
}
 
#logo {
margin: 10px 0 0 10px;
padding: 5px 0 5px 0;
}
 
#logo h3 {
font-size: 28px;
font-weight: bold;
letter-spacing: 1px;
line-height: 1;
margin: 0;
padding: 0;
}
 
#logo h3 a{
color: #ffe;
}
 
#logo h3 a:hover {
color: #fff;
}
 
#logo p {
color: #fff;
font-weight: bold;
margin: 5px 0 0 0;
padding: 0;
}
 
/* Containers */
#wrap {
background-color: #ffffff;
border: 1px solid #ccc;
border-right: 2px solid #bbb;
border-bottom: 2px solid #bbb;
margin:0 auto 0 auto;
padding: 0;
width: 950px;
}
 
#contentwrapper{
margin: 0;
padding: 0;
width: 100%;
}
 
#content {
float: left;
padding: 0px 20px 10px 20px;
width: 500px;
margin: 0;
}
 
/* Posts */
.subheader {
color: #aaa;
font-weight: bold;
font-style: italic;
}
 
.entrytitle h2 {
font-size: 1.3em;
line-height: 1.3em;
margin:0;
}
 
.entrytitle h2 a {
color: #555;
}
 
.entrytitle h2 a:hover {
color: #58BBEB;
}
 
.entrytitle h3 {
color: #999;
font-size: 0.95em;
line-height: 1.3em;
margin:0;
}
 
.post {
clear: both;
margin-bottom: 1em;
padding-top:1em;
}
 
.post blockquote {
color: #666;
margin: 0 30px 20px 30px;
padding: 0 0 0 10px;
border: 2px solid #fff;
border-left: 2px solid #C3D9FF;
}
 
.entrymeta {
background-color: #FFFFEF;
border: 1px solid #f9f7ed;
clear: both;
padding: 3px;
}
 
.entrymeta img {
vertical-align: text-top;
padding-bottom: 5px;
}
 
.navigation {
padding-bottom: 20px;
}
 
.navigation ul{
margin: 0;
padding: 0;
}
 
.navigation li{
list-style-type:square;
margin-left: 18px;
}
 
.alignright {
float: right;
}
 
.alignleft {
float: left;
}
 
.centered {
display: block;
margin: 0 auto;
}
 
.sticky {
background-color: #f9f7ed;
padding-left: 3px;
}
 
/* Sidebar */
#sidebar_main {
float:left;
margin: 0 0 0 15px;
padding: 0 0 20px 0;
width: 380px;
height: 100%;
}
 
#sidebar_left {
float: left;
margin: 0;
padding-top: 25px;
width: 180px;
}
 
#sidebar_right {
float: left;
margin-left: 15px;
padding-top: 25px;
width: 180px;
}
 
.sidebar_full {
float: left;
margin-top: 15px;
width: 380px;
}
 
.sidebar {
font-size: 0.8em;
}
 
.sidebar a {
color: #0099FF;
font-weight: bold;
}
 
.sidebar a:hover {
color:#555;
font-weight: bold;
}
 
.sidebar h2 {
color: #FF7400;
font-size: 1.5em;
margin: 0;
padding: 0;
}
 
.sidebar ul {
list-style-type: none;
margin: 0 0 15px 0;
padding: 0;
}
 
.sidebar ul li {
background-color: #fafafa;
border-bottom: 1px dotted #ddd;
margin-bottom: 0.3em;
padding: 0.3em;
}
 
.sidebar ul li ul{
list-style-type: square;
margin-left: 1.5em;
padding: 0;
border: 0;
}
 
.sidebar ul li ul li {
border: 0;
}
 
.search fieldset {
border: 0;
margin: 0;
padding: 0;
}
 
.searchinput {
border: 1px solid #C3D9FF;
padding: 4px;
width: 125px;
}
 
.searchbutton {
border: 1px solid #C3D9FF;
margin: 0;
padding: 2px;
}
 
/* Comments */
.commentsblock textarea {
width: 35em;
}
 
.commentsblock input, .commentsblock textarea {
border: 1px solid #d1d1d1;
}
 
.commentsblock textarea:focus {
background: #eee;
border: 1px solid #a1a1a1;
}
 
.commentsblock textarea:focus, .commentsblock input:focus {
background: #eee;
border: 1px solid #a1a1a1;
}
 
ol.commentlist {
color: #666;
list-style-type: none;
margin: 0;
margin-top: 1.5em;
padding: 0;
}
 
.commentlist li {
margin-bottom: 2em;
padding: 0.5em 1em;
}
 
.commentlist li .avatar {
float: left;
border: 1px solid #eee;
padding: 2px;
margin-right: 5px;
background: #fff;
}
 
.alt1, .thread-even {
background: #f9f7ed;
border: 1px solid #f9f7ee;
padding: 0.5em;
border-left: 10px solid #CDEB8B;
}
 
.alt2, .thread-odd {
background: #f9f7ed;
padding: 0.5em;
border: 1px solid #f9f7ee;
border-left: 10px solid #C3D9FF;
}
 
h3#comments {
font-size: 1.5em;
}
 
.commentcount {
float: right;
font-size: 20px;
font-weight: bold;
}
 
.commentcount a {
color: #cccccc;
}
 
.commentcount a:hover {
color: #999999;
}
 
.commenttext {
border-top: 1px solid #ddd;
}
 
.commentlist ul.children li {
background-color: #e3e3e3;
border: 1px solid #efefef;
list-style: none;
margin-top: 20px;
}
 
.commentlist ul li.depth-2 {
background-color: #f1f1f1;
}
 
.commentlist ul li.depth-3 {
background-color: #ececec;
}
 
.commentlist ul li.depth-4 {
background-color: #e8e8e8;
}
 
.commentlist ul li.depth-5 {
background-color: #e3e3e3;
}
 
ol.trackbacklist {
color: #666;
list-style-type: none;
margin: 0;
padding: 0;
}
 
.trackbacklist li {
background-color: #fafafa;
padding: 0.5em 1em;
}
 
.commentsnavigation {
padding: 30px 0;
}
 
/* Footer */
#footer {
clear: both;
color: #999;
margin: 0 auto 0 auto;
padding: 5px 0 10px 0;
text-align: right;
width: 950px;
}
 
/* Begin Images */
p img {
	padding: 0;
	max-width: 100%;
	}
 
img.centered {
	display: block;
	margin-left: auto;
	margin-right: auto;
	}
 
img.alignright {
	padding: 4px;
	margin: 0 0 2px 7px;
	display: inline;
	}
 
img.alignleft {
	padding: 4px;
	margin: 0 7px 2px 0;
	display: inline;
	}
/* End Images */
 
/* Captions */
.aligncenter,
div.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
 
.wp-caption {
	border: 1px solid #ddd;
	text-align: center;
	background-color: #f3f3f3;
	padding-top: 4px;
	margin: 10px;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
 
.wp-caption img {
	margin: 0;
	padding: 0;
	border: 0 none;
}
 
.wp-caption p.wp-caption-text {
	font-size: 11px;
	line-height: 17px;
	padding: 0 4px 5px;
	margin: 0;
}
/* End captions */
 
/* Sitemap */
.ddsg-sitemap ul{
margin: 0;
padding: 0;
}
 
.ddsg-sitemap ul li {
font-weight: bold;
list-style-type: none;
margin: 0;
padding: 0;
}
 
.ddsg-sitemap ul li ul{
list-style-type: none;
margin: 15px;
padding-left: 20px;
}
 
.ddsg-sitemap ul li ul li{
font-weight: normal;
list-style-type: circle;
}
本篇發表於 部落格架設。將永久鍊結加入書籤。

發表迴響

您的電子郵件位址並不會被公開。 必要欄位標記為 *

*

您可以使用這些 HTML 標籤與屬性: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>