-
Notifications
You must be signed in to change notification settings - Fork 8
/
custom.scss
69 lines (52 loc) · 1.1 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
/*-- scss:defaults --*/
$bs-blue: #027373 !default;
$bs-pagination-active-bg: $bs-blue !default;
$bs-primary: $bs-blue !default;
$bs-btn-hover-bg: $bs-blue !default;
/*-- scss:rules --*/
.navbar {
background-color: $bs-blue;
}
.quarto-title-banner{
background-color: #0c2e42 ;
}
.btn-primary {
color: #fff;
background-color: $bs-blue;
border-color: $bs-blue;
}
.page-item.active .page-link {
z-index: 3;
color: #fff;
background-color: $bs-blue;
border-color: $bs-blue;
}
.quarto-title-banner {
margin-bottom: 1em;
color: rgba(255,255,255,.7);
background: $bs-blue;
}
.page-link {
color: $bs-blue;
}
.page-link:hover {
z-index: 2;
color: #fff;
background-color: $bs-blue;
border-color: $bs-blue;
}
a{
color: $bs-blue;
}
b, strong {
color: $bs-blue;
font-weight: bolder;
}
div.quarto-post .listing-categories .listing-category {
color: $bs-blue;
border: solid 1px var(--bs-gray-400);
font-size: .8em;
}
p pre code:not(.sourceCode), li pre code:not(.sourceCode), pre code:not(.sourceCode) {
background-color: #f0efff;
}