blob: de813acb32cdb28bcab00816d6c44527ca1e7e02 (
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
126
127
128
|
html{
font-family: "Lucida Grande", "Segoe UI", sans-serif;
color: #111;
background: #EEE;
font-size: 62.5%;
}
body{
margin: 0;
padding: 0;
font-size: 1.3em;
line-height: 1.5em;
}
a{
color: #669;
}
a:visited{
color: #444;
}
a:hover{
color: #000;
}
a img{
border: none;
}
pre, code{
max-height: 100%;
width: 100%;
font-size: 1.2em;
overflow: auto;
}
h1, h2{
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
h2{
margin: 0;
}
#page {
width: 890px;
margin: 0 auto;
}
/* Header
*******************************************************************************/
#top {
color: #FFF;
padding: 10px 30px;
}
h1 a,
h1 a:visited {
color: #665;
text-decoration: none;
}
h1 a:hover {
color: #444;
}
/* Content
*******************************************************************************/
#content {
width: 590px;
float: left;
}
/* Sidebar
*******************************************************************************/
#sidebar {
width: 300px;
float: left;
}
#sidebar div {
padding: 1em 30px;
}
#sidebar h2 {
color: #665;
}
#sidebar ul {
list-style: none;
padding: 0;
margin: 1em 0;
}
/* Article
*******************************************************************************/
.article{
margin-bottom: 2em;
padding: 30px;
background: #FFF;
border: 1px solid #DDD;
}
.article-title,
.article-title a{
color: #111;
text-decoration: none;
}
.article-info{
margin: 0 0 1em 0;
color: #999;
}
.article-content {
font-family: Georgia, serif;
}
.article img{
max-width: 440px;
}
.article .collapsed{
display: none;
}
/* Footer
*******************************************************************************/
#footer {
clear: both;
padding: 0 30px;
}
|