-
Notifications
You must be signed in to change notification settings - Fork 4
/
theme.scss
95 lines (83 loc) · 1.92 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
91
92
93
94
95
/*-- scss:defaults --*/
// Base document colors
$body-bg: #ffffff;
$banner-bg: #f0e3ce;
$grass-color-light: #f0e3ce;
// $grass-color-light: rgb(207, 207, 207);
$grass-color-black: #0a0a0a;
$grass-color-dark-grey: #A0A0A0;
$grass-color-light-grey: #CCCCCC;
$grass-color-light-green: #EFF4E8;
$grass-color-dark-green: #B8C6A5;
$grass-color-soft-green: #9ED29C;
$grass-color-primary: #088B36;
$primary: $grass-color-primary;
$op-white:#fbfbfb;
// https://www.color-hex.com/color-palette/36240
$op-primary: #657e96;
$op-secondary: #d07944;
$op-tan: #f0e3ce;
$op-brown: #a76a3a;
$op-mustard: #d49441;
$op-light-grey:rgb(207, 207, 207);
// Revealjs theme colors
$link-color: $grass-color-primary;
$presentation-heading-color: $grass-color-primary;
.highlight {
color: $grass-color-primary;
font-weight: bold;
}
.circle-image-container {
position: relative;
// width: 100%;
height: auto;
display: inline-block;
}
.circle-image {
border-radius: 50%;
width: 100%;
height: auto;
object-fit: cover;
display: block;
}
.circle-image-container::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 60%;
background: linear-gradient(to bottom, $op-white, $grass-color-soft-green);
opacity: 1;
z-index: -1;
}
.quarto-title-banner {
background-color: $banner-bg !important;
color: $grass-color-black !important;
h1 {
color: $grass-color-black !important;
}
}
.reveal {
h3 {
color: $grass-color-black !important;
}
.columns {
.column {
background-color: rgba(251, 252, 250, 0.5) !important;
}
}
.quarto-title-block {
.quarto-title-acknowledgements {
color: $grass-color-primary !important;
font-size: 0.6em;
}
}
}
.text-white {
color: $op-white !important;
}
.text-center {
text-align: center !important;
}