Skip to content

Commit a63623c

Browse files
committed
use style
1 parent bcf4679 commit a63623c

File tree

4 files changed

+157
-0
lines changed

4 files changed

+157
-0
lines changed

chapters/03-analytics-01.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#Github项目分析一

chapters/03-analytics-project-01.md

Whitespace-only changes.
File renamed without changes.

style.css

Lines changed: 156 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,156 @@
1+
h1,
2+
h2,
3+
h3,
4+
h4,
5+
h5,
6+
h6,
7+
p,
8+
blockquote {
9+
margin: 0;
10+
padding: 0;
11+
}
12+
13+
body {
14+
font-family: "Helvetica Neue", Helvetica, "Hiragino Sans GB", Arial, sans-serif;
15+
font-size: 18px;
16+
line-height: 1.4;
17+
color: #000000;
18+
margin: 10px 13px 10px 13px;
19+
}
20+
21+
a {
22+
color: #0069d6;
23+
}
24+
25+
a:hover {
26+
color: #0050a3;
27+
text-decoration: none;
28+
}
29+
30+
a img {
31+
border: none;
32+
}
33+
34+
p {
35+
margin-bottom: 20px;
36+
}
37+
38+
h1,
39+
h2,
40+
h3,
41+
h4,
42+
h5,
43+
h6 {
44+
color: #404040;
45+
line-height: 36px;
46+
}
47+
48+
h1 {
49+
margin-bottom: 18px;
50+
font-size: 30px;
51+
}
52+
53+
h1 a {
54+
margin-top: 100px;
55+
display: block;
56+
}
57+
58+
h2 {
59+
font-size: 24px;
60+
}
61+
62+
h3 {
63+
font-size: 18px;
64+
}
65+
66+
h4 {
67+
font-size: 16px;
68+
}
69+
70+
h5 {
71+
font-size: 14px;
72+
}
73+
74+
h6 {
75+
font-size: 13px;
76+
}
77+
78+
hr {
79+
margin: 0 0 19px;
80+
border: 0;
81+
border-bottom: 1px solid #ccc;
82+
}
83+
84+
blockquote {
85+
padding: 13px 13px 21px 15px;
86+
margin-bottom: 18px;
87+
font-family: georgia,serif;
88+
font-style: italic;
89+
}
90+
91+
blockquote:before {
92+
content: "\201C";
93+
font-size: 40px;
94+
margin-left: -10px;
95+
font-family: georgia,serif;
96+
color: #eee;
97+
}
98+
99+
blockquote p {
100+
font-size: 14px;
101+
font-weight: 300;
102+
line-height: 18px;
103+
margin-bottom: 0;
104+
font-style: italic;
105+
}
106+
107+
code, pre {
108+
font-family: Monaco, Andale Mono, Courier New, monospace;
109+
}
110+
111+
code {
112+
background-color: #fee9cc;
113+
color: rgba(0, 0, 0, 0.75);
114+
padding: 1px 3px;
115+
font-size: 12px;
116+
-webkit-border-radius: 3px;
117+
-moz-border-radius: 3px;
118+
border-radius: 3px;
119+
}
120+
121+
pre {
122+
display: block;
123+
padding: 14px;
124+
margin: 0 0 18px;
125+
line-height: 16px;
126+
font-size: 11px;
127+
border: 1px solid #d9d9d9;
128+
white-space: pre-wrap;
129+
word-wrap: break-word;
130+
}
131+
132+
pre code {
133+
background-color: #fff;
134+
color: #737373;
135+
font-size: 11px;
136+
padding: 0;
137+
}
138+
139+
figure img {
140+
max-width: 100%;
141+
}
142+
143+
ul li a {
144+
font-weight: bold;
145+
}
146+
147+
ul li ul a {
148+
font-weight: normal;
149+
}
150+
151+
@media screen and (min-width: 768px) {
152+
body {
153+
width: 748px;
154+
margin: 40px auto;
155+
}
156+
}

0 commit comments

Comments
 (0)