-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.scss
92 lines (71 loc) · 1.33 KB
/
styles.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
91
92
/*-- scss:defaults --*/
// FHCC Colors -
// See: https://brand.fredhutch.org/ for more FHCC brand guidance
$dark-navy: #1B365D;
$bright-blue: #00ABC8;
$vivid-yellow: #FFB500;
$warm-purple: #AA4AC4;
$teal: #0A799A;
$light-gray: #F4F4F4;
$white: #FFFFFF;
$black: #000000;
// Callout Blocks
$callout-color-note: $warm-purple;
$callout-color-tip: $vivid-yellow;
$callout-color-important: $bright-blue;
$callout-color-caution: $vivid-yellow;
$callout-color-warning: $vivid-yellow;
// TOC
$toc-color: $dark-navy;
/*-- scss:rules --*/
// Headers
h2, h3, h4, h5, h6 {
color: $teal;
font: Arial;
}
h3, h4, h5, h6 {
border-bottom: none;
}
title, h1 {
font-family: "Tiempos";
font-weight: bold;
color: $dark-navy;
border-bottom: none;
}
// Navbar
#navbarCollapse a:link,
#navbarCollapse a:visited,
#navbarCollapse a:active {
font-size: 1.2em;
color: #1B365D;
}
#navbarCollapse a:hover {
color: #0A799A;
text-decoration: underline;
}
.navbar {
border-bottom: 1px solid #00ABC8;
}
.navbar-logo {
/* makes logo bigger */
max-height: 40px;
}
// Left sidebar
#quarto-sidebar a:link,
#quarto-sidebar a:visited {
color: #1B365D;
}
#quarto-sidebar a:hover,
#quarto-sidebar a:active {
color: #0A799A;
}
// Site links
a:link {
color: #0A799A;
}
a:visited {
color: #0A799A;
}
a:hover, a:active {
color: #00ABC8;
}