-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.scss
58 lines (45 loc) · 1.12 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
/*-- scss:defaults --*/
@import "theme-colors";
$old-quarto-body-bg: #FEFBF2;
$body-bg: #FEFBF2;
$quarto-body-color: $navy-blue;
$quarto-text-muted: $warm-gray;
$bs-body-color: $navy-blue;
$bs-dark: $navy-blue;
$bs-dark-warm: $warm-gray;
$navbar-fg: $warm-beige;
$navbar-bg: $navy-blue;
$sidebar-bg: $palest-beige;
$sidebar-fg: $navy-blue;
// Re-export the colors as CSS variables
:root {
--stan-bg: #{$palest-beige};
--stan-highlight: #{$warm-beige};
--stan-secondary: #{$aquatic-blue};
--stan-dark: #{$navy-blue};
}
/* Custom Styles */
/* Level 2 Headings */
h2 {
background-color: $palest-beige;
border-radius: 5px;
}
/* Table Styles */
table {
width: 100%;
border-collapse: collapse;
border-top: 1px solid $navy-blue; /* Adds top border to the table */
border-bottom: 1px solid $navy-blue; /* Adds bottom border to the table */
}
th, td {
border: none; /* Removes borders from table cells */
padding: 0.5em; /* Adjusts padding as needed */
}
thead th {
background-color: $palest-beige;
color: $navy-blue;
}
tbody td:first-child {
background-color: $palest-beige;
color: $navy-blue;
}