-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
101 lines (85 loc) · 2.19 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
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
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,700');
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;700&display=swap');
* {
text-rendering: optimizelegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale
}
html .header-nav,
html .footer-nav,
html .markdown-body,
html .toc-menu {
font-family: 'source sans pro', sans-serif !important;
}
html .markdown-body code {
font-family: 'Fira Code', monospace;
background: linear-gradient(to bottom, transparent 15%, rgba(47, 167, 143, 0.03) 15%, rgba(47, 167, 143, 0.03) 85%, transparent 85%);
margin: 0 .05em;
}
html .markdown-body pre code,
html .markdown-body p code,
html .markdown-body h4 code{
background: 0 0;
}
html .markdown-body h4 code::before,
html .markdown-body h4 code::after {
display: none;
}
html .markdown-body h4 a {
color: inherit;
font-weight: inherit;
text-decoration: underline;
}
html .markdown-body h3 + p,
html .markdown-body h4 + p {
margin-top: -.9em;
}
html .markdown-body pre {
padding: 24px;
box-shadow: inset 1px 1px rgba(0, 0, 0, .04);
background: #fafbfb
}
html .markdown-body h1, html .markdown-body h2, html .markdown-body h3, html .markdown-body h4 {
font-family: source sans pro, sans-serif;
font-weight: 300;
color: #25a
}
html .markdown-body a {
font-weight: 700;
}
html .markdown-body {
line-height: 1.7
}
html .markdown-body .file-heading {
font-weight: 700;
font-size: .95em;
padding-bottom: 16px;
margin-bottom: 0;
overflow: hidden;
height: 1.3em;
box-sizing: content-box;
white-space: nowrap
}
html .markdown-body .file-heading code {
background: 0 0;
box-shadow: none;
margin: 0;
padding: 0
}
html .markdown-body .file-heading code:before, html .markdown-body .file-heading code:after {
display: none
}
html .markdown-body .file-heading + pre {
margin-top: 0
}
html .markdown-body .file-heading:before {
display: inline-block;
vertical-align: middle;
content: "";
font-family: Ionicons;
font-weight: 400;
font-size: 167x;
width: 18px;
color: #999;
margin-top: -1px
}