-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.scss
90 lines (73 loc) · 1.54 KB
/
theme.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
/*-- scss:defaults --*/
$border-radius: 2em;
// Block quotes
blockquote {
font-style: italic;
}
.blockquote {
margin-bottom: 2em;
}
// Index about section (TITLE PAGE)
.about-entity {
padding-left: 1em;
}
.quarto-title-meta {
display: flex !important;
flex-direction: column;
}
.about-links {
display: flex !important;
flex-direction: column !important;
width: 175px !important;
}
.about-link {
font-size: 1rem !important;
border-radius: $border-radius !important;
border-color: $navbar-border-color !important;
padding: 0.5em !important;
background-color: $navbar-bg;
color: $link-color !important;
font-weight: bold;
&:hover {
color: $navbar-bg !important;
background-color: $link-color-hover;
}
}
.about-image {
margin-top: 1.5em;
}
.subtitle.lead {
color: $subtitle-color;
font-style: italic;
font-size: 0.9rem;
margin-bottom: 2em;
}
.quarto-title-meta-heading {
font-weight: bold !important;
}
// Navbar
.navbar {
text-transform: none !important;
padding-block: 0.8rem !important;
border-bottom: 1px solid $navbar-border-color;
}
// Next/Previous page navigation
.nav-page {
padding-block: 0.1rem !important;
padding-inline: 0rem !important;
font-size: 0.8rem !important;
}
.nav-page-previous {
visibility: hidden;
width: 0px;
}
.nav-page-text {
font-size: 0.8rem !important;
color: $link-color !important;
}
.nav-page-next {
color: $link-color !important;
}
#quarto-content {
margin-bottom: 2em;
}