blob: 1ee004b51f352fbfd5d9a2dfa20cc2e328297e9a (
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
html{
font-family: Arial, sans-serif;
color: #FFF;
background: #333;
font-size: 62.5%;
}
body{
margin: 0;
padding: 0;
font-size: 1.1em;
line-height: 1.5em;
}
a{
color: #CCC;
}
a:visited{
color: #AAA;
}
a:hover{
color: #FFF;
}
a img{
border: none;
}
pre, code{
font-size: 1.2em;
}
/* Top
*******************************************************************************/
#page{
width: 640px;
margin: 0 auto;
}
/* Top
*******************************************************************************/
#top{
padding: 2%;
margin: 3em;
line-height: 2em;
color: #FFF;
text-align: center;
}
#top h1{
margin: 0;
letter-spacing: -1px;
font-family: Georgia, serif;
}
/* Top
*******************************************************************************/
#content{
width: 66%;
padding: 0 2%;
margin: 0;
float: right;
}
.post{
margin-bottom: 3em;
}
.post-title, .post-title a{
font-family: Georgia, serif;
color: #CCC;
text-decoration: none;
}
.post-title{
padding-bottom: 0.5em;
border-bottom: 1px solid #444;
}
.post-info{
color: #999;
margin-top: -1em;
}
.post-info a{
color: #999;
text-decoration : none;
}
/* Top
*******************************************************************************/
#sidebar{
width: 26%;
padding: 0 2%;
margin: 0;
float: left;
}
#sidebar div{
font-size: 0.8em;
}
#sidebar h2{
font-family: Georgia, serif;
color: #999;
}
#sidebar a{
text-decoration: none;
}
#sidebar ul{
margin: 0;
padding: 0;
list-style: none;
}
/* Footer
*******************************************************************************/
#footer{
padding: 1ex 1em;
clear: both;
border-top: 1px solid #444;
color: #999;
}
|