-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
118 lines (90 loc) · 1.58 KB
/
styles.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
/*fonts*/
h1, h2, h3 {
color: #819CBB;
}
h1.title {
font-size: 50px;
font-weight: bolder;
color: #819CBB;
}
h1 {
font-weight: bolder;
}
h2 {
font-weight: bolder;
}
h3 {
font-weight: bolder;
}
h4{
font-weight: bolder;
}
p.subtitle {
font-style: italic;
color: #808080;
}
.author {
margin-bottom: 0;
}
/*block quotes*/
.blockquote {
font-size: 1em;
color: #819CBB;
border-left-color: #819CBB;
}
/* Inline code */
.code {
border-radius: 5px;
color: #819CBB;
}
.code .solution {
border-radius: 5px;
color: grey;
}
/* call outs style */
.callout {
border-radius: 5px;
}
.callout-header {
color: white;
font-size: 1.25em !important;
}
/* notes */
div.callout-note.callout-style-default>.callout-header {
background-color: #819cbb;
}
div.callout-note.callout {
border-left-color: #819cbb;
background-color: #e7f1ff;
}
/* TODO: center icon in line */
div.callout-note.callout-titled .callout-icon::before {
background-image: url("img/icons/info.svg");
background-size: 100%;
}
div.callout-look.callout {
border-left-color: #94854d;
background-color: #f2eacb;
}
div.callout-code.callout {
border-left-color: #94854d;
background-color: #f2eacb;
}
/* TOC styling */
h2#toc-title{
font-weight: 700;
}
.hoverinfo {
font-weight: bolder;
color: #819CBB;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
background-color: #819cbb;
}
.nav-pills .nav-link {
color: #819cbb;
}
.sidebar nav[role=doc-toc] ul>li>a.active, .sidebar nav[role=doc-toc] ul>li>ul>li>a.active {
border-left: #94854d;
color: #94854d !important;
}