-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathextra.css
125 lines (92 loc) · 1.52 KB
/
extra.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
/* Basic page element style */
body {
background: #f5f7f9;
}
body::before {
background: none;
}
div.col-md-9 {
padding: 40px 30px;
background-color: #fff;
}
div.col-md-9 p {
color: #555;
line-height: 2;
margin-bottom: 20px;
}
a {
color: #555;
}
a:hover {
color: #0366d6;
}
div.col-md-9 img {
margin: 0 auto;
display:block;
}
code.no-highlight {
color: black;
}
/* nav-bar & side nav-bar*/
.navbar {
padding: 0 15px;
}
.navbar.bg-primary {
background-color: black !important;
background-image: none;
}
div.col-md-3 ul.nav li.nav-item {
width: 100%;
}
/* title */
div.col-md-9 h1:first-of-type {
text-align: center;
font-size: 1.5rem;
font-weight: bold;
}
div.col-md-9 h1:first-of-type .headerlink {
display: none;
}
div.col-md-9 h2 {
font-size: 1.375rem;
margin: 20px 0;
font-weight: bold;
}
div.col-md-9 h3 {
font-size: 1.0rem;
margin: 15px 0;
font-weight: bold;
}
div.col-md-9 > h1:first-of-type + p {
text-align: center;
}
/* blockquote */
div.col-md-9 blockquote {
padding: 0 1em;
border-left: .25em solid #c9d1d9;
}
/* List styles */
dd {
padding-left: 20px;
}
div.col-md-9 li {
margin-bottom: 10px;
}
div.col-md-9 li p {
margin-bottom: 10px;
}
/* admonition */
div.col-md-9 .admonition p {
margin-bottom: 5px;
}
/* hyperlink, footnote*/
div.col-md-9 p a {
color: #0366d6;
}
div.col-md-9 p+ul a {
color: #0366d6;
}
a.footnote-ref {
color: #0366d6;
font-weight: bold;
}