-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.scss
88 lines (75 loc) · 1.55 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
/*-- scss:defaults --*/
// Base document colors
$primary: #657e96;
$body-bg: #ffffff;
$banner-bg: #f0e3ce;
$op-white:#fbfbfb;
$op-black: #0a0a0a;
// 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: $primary;
$presentation-heading-color: $primary;
.highlight {
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, $op-primary);
opacity: 1;
z-index: -1;
}
.quarto-title-banner {
background-color: $banner-bg !important;
color: $op-black !important;
h1 {
color: $op-black !important;
}
}
.reveal {
h3 {
color: $op-black !important;
}
// .columns {
// .column {
// background-color: $op-light-grey !important;
// }
// }
.quarto-title-block {
.quarto-title-acknowledgements {
color: $primary !important;
font-size: 0.6em;
}
}
}
.text-white {
color: $op-white !important;
}
.text-center {
text-align: center !important;
}