-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
70 lines (57 loc) · 1.17 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
* {
-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 code {
white-space: inherit;
}
pre {
word-break: normal;
word-wrap: normal;
}
pre code {
white-space: inherit;
}
caption {
caption-side: top;
}
p.caption {
font-size: 13px;
margin-top: 16px;
}
@font-face{
font-family: 'Publico Text';
src: url('./truetype/PublicoText-Roman.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face{
font-family: 'Publico Text Semibold';
src: url('./truetype/PublicoText-Semibold.ttf') format('truetype');
font-weight: 600;
}
@font-face{
font-family: 'Publico Text';
src: url('./truetype/PublicoText-Italic.ttf') format('truetype');
font-weight: normal;
font-style: italic;
}
body{
font-family: "Publico Text";
}
code {
font-family: 'Consolas', monospace;
}
.inline-figure {
border: solid 1px #ffffff;
margin-bottom: 1rem;
}