-
Notifications
You must be signed in to change notification settings - Fork 130
/
Copy pathreadability.css
158 lines (127 loc) · 2.22 KB
/
readability.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
/* vim: set et sw=4 ts=4 sts=4 fdm=marker ff=unix fenc=utf8 nobomb: */
/**
* Readability 首页
*
* @author mingcheng<i.feelinglucky#gmail.com>
* @date 2011-02-18
* @link http://www.gracecode.com/
*/
body {
background: #fbf0d9;
font-size: 16px;
font-family: "minion-pro-1","minion-pro-2",Palatino,Georgia,"Times New Roman",serif;
}
* html hr, html > body hr {
margin: 1em 0;
}
a:link, a:visited, a:hover {
color: #333;
}
#page {
width: 750px;
margin: 50px auto;
}
#logo {
color: #5f4b32;
font-size: 4em;
}
#desp {
color: #5f4b32;
font-size: 1.2em;
margin: -2.5em 0 2em 1em;
}
#form {
margin: 2em 0;
text-align: right;
}
#form input {
font-size: 1.5em;
}
#form #url {
width: 500px;
}
#form #submit {
width: 50px;
border: none;
background-color: transparent;
cursor: pointer;
}
#footer {
overflow: hidden;
text-align: right;
list-style: none;
}
#footer li {
margin-right: -2px;
float: right;
}
#footer li a {
border-right: 1px solid #555;
padding: 0 .5em;
}
.article {
color: #5f4b32;
font-size: 16px;
}
.article a:link {
color: #5f4b32;
}
.article h1 , .article h2 , .article h3 , .article h4 ,
.article h5 , .article h6 {
margin: .5em 0 1.5em 0;
font-weight: 700;
}
.article h1 {
font-size: 1.8em;
}
.article h1 a:link,
.article h1 a:hover,
.article h1 a:visited {
text-decoration: none;
}
.article h2 {
font-size: 1.5em;
}
.article h3 {
font-size: 1.3em;
}
.article h4 {
font-size: 1.1em;
}
.article h5 {
font-size: 1em;
}
.article h6 {
font-size: .8em;
}
.article p {
line-height: 1.5em;
font-size: 20px;
margin: 0 0 1em 0;
}
.article code,
.article pre,
.article img {
padding: 5px;
border: 1px solid #999;
background: #fff;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
max-width: 90%;
margin: .3em 0;
}
.article code,
.article pre {
margin: 1em 0;
font-size: 14px;
font-family: monaco, "new courier", courier, sans-serif;
}
.article code *, .article pre * {
border: 0;
}
.article dl, .article ol, .article ul {
line-height: 1.5em;
font-size: 18px;
margin: 0 0 .8em 2em;
}