-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.scss
120 lines (87 loc) · 2.13 KB
/
custom.scss
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
/*-- scss:defaults --*/
// Base document colors
$link-color: #288BAB;
$code-block-bg: #EDEFF1;
$code-color: #1F618D;
$code-bg: #FFFFFF;
$callout-border-scale: 1%;
$callout-icon-scale: 10%;
$callout-margin-top: 1.0rem;
$callout-margin-bottom: 1.7rem;
$callout-color-warning: #F72D93;
$callout-color-caution: #EEAA2C;
$callout-color-important: #FCE762;
$callout-color-tip: #540375;
$callout-color-note: #540375;
/*-- scss:rules --*/
.sidebar-title {
color: #288BAB;;
}
div.sidebar-item-container .active {
font-weight: bold;
}
.sidebar nav[role=doc-toc] ul>li>a.active, .sidebar nav[role=doc-toc] ul>li>ul>li>a.active{
font-weight: bold;
}
img.quarto-cover-image {
box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
/* Headings ------------------------------------------------------ */
#title-block-header.quarto-title-block.default .quarto-title h1.title {
margin-bottom: 0.5rem;
}
h2 {
margin-top: 2rem;
margin-bottom: 1.0rem;
font-size: 1.4rem;
font-weight: 600;
}
h3 { margin-top: 1.7em; margin-bottom: 0.6rem; font-size: 1.2rem; font-weight: 500; }
h4 { margin-top: 1.6em; font-size: 1.1rem; font-weight: 500; }
h5 { margin-top: 1.5em; font-size: 1rem; }
.quarto-section-identifier {
color: #288BAB;
font-weight: normal;
}
/* Content Boxes
------------------------------------------------------------ */
.content-box-blue,
.content-box-gray,
.content-box-green,
.content-box-purple,
.content-box-red,
.content-box-yellow {
margin: 0 0 40px;
overflow: hidden;
padding: 15px;
}
.content-box-blue {
background-color: #d8ecf7;
border: 1px solid #afcde3;
margin: 0 0 40px;
overflow: hidden;
padding: 15px;
}
.content-box-gray {
background-color: #e2e2e2;
border: 1px solid #bdbdbd;
}
.content-box-green {
background-color: #d9edc2;
border: 1px solid #b2ce96;
margin: 0 0 40px;
overflow: hidden;
padding: 15px;
}
.content-box-purple {
background-color: #e2e2f9;
border: 1px solid #bebde9;
}
.content-box-red {
background-color: #f9dbdb;
border: 1px solid #e9b3b3;
}
.content-box-yellow {
background-color: #fef5c4;
border: 1px solid #fadf98;
}