-
Notifications
You must be signed in to change notification settings - Fork 27
/
style.css
46 lines (40 loc) · 888 Bytes
/
style.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
@import url('https://fonts.googleapis.com/css?family=PT+Mono|PT+Sans+Narrow:400,700|PT+Serif:400,400i,700,700i');
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-overflow-scrolling: touch;
-webkit-tap-highlight-color: transparent;
-webkit-text-size-adjust: none;
-webkit-touch-callout: none;
}
.book .book-body .page-wrapper .page-inner section {
line-height: 1.7;
font-size: 1.6rem;
}
p, div {
font-family: 'PT Serif', serif;
font-size: 1.6rem;
}
li, h1, h2, h3 {
font-family: 'PT Sans Narrow', sans-serif;
font-size: 1.6rem;
}
code, kbd, pre, samp, .sourceLine, .sourceCode {
font-family: 'PT Mono', monospace;
font-size: 1em;
}
p.caption {
color: #777;
margin-top: 10px;
}
p code {
white-space: inherit;
}
pre {
word-break: normal;
word-wrap: normal;
}
pre code {
white-space: inherit;
}