-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstyles.css
44 lines (29 loc) · 802 Bytes
/
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
$primary: #A51C30 !default;
$font-size-root: 16px !default;
body {
font-family: 'Nunito', sans-serif;
}
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;800&display=swap');
a {
color: #3498db; /* Soft blue */
}
a {
transition: color 0.3s ease;
}
a:hover {
color: #2c3e50; /* Darker shade when hovered */
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
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 {
}