-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
54 lines (45 loc) · 1.22 KB
/
styles.css
File metadata and controls
54 lines (45 loc) · 1.22 KB
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
/* css styles */
@font-face {
font-family: 'Montserrat';
src: url('fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('.ttf');
font-weight: 400;
font-style: normal;
}
/* Headings only */
h1, h2, h3, h4, h5, h6, .navbar-brand {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
}
body {
font-family: 'Montserrat', sans-serif;
}
/* navbar colors */
/* Check _quarto.yml file for background and foreground */
/* Center figure captions */
.figure, figure {
text-align: center; /* centers everything inside the figure block */
}
/* Specifically target caption text */
figcaption {
font-family: 'Montserrat', sans-serif;
text-align: center;
font-style: italic; /* optional: make caption text italic */
color: #555; /* optional: adjust caption color */
margin-top: 0.5em; /* spacing between figure and caption */
}
.btn, .btn-primary, .dropdown-toggle, .babelquarto-languages-button{
background-color: #377535 !important; /* green tone */
border: #377535;
color: #ffffff; /* e.g., #ffffff for white */
}
a {
color: #377535;
}
a:hover {
color: #78a177;
}
/* Navbar link hover effects */
.navbar-nav .nav-link:hover {
color: #abb4bd !important;
background-color: transparent;
}