-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.scss
69 lines (53 loc) · 1.5 KB
/
custom.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
/*-- scss:defaults --*/
@import url(https://fonts.googleapis.com/css?family=Montserrat:600,600i&display=swap);
@import url(https://fonts.googleapis.com/css?family=Josefin+Sans:300&display=swap);
@import url(https://fonts.googleapis.com/css?family=Fira+Mono&display=swap);
// headings
$presentation-heading-font: 'Josefin Sans', sans-serif !default;
$presentation-font-size-root: 1.75rem !default;
$presentation-h1-font-size: 5.75rem !default;
$presentation-h2-font-size: 2.75rem !default;
$presentation-h3-font-size: 2rem !default;
//code
$font-family-monospace: 'Fira Mono', monospace !default;
/*-- scss:rules --*/
// https://stackoverflow.com/questions/75471614/how-to-make-code-chunk-output-scrollable-horizontally-in-quarto-revealjs-present
// To make code chunk scroll horizontally
.hscroll {
overflow-x: auto;
white-space: nowrap;
}
.reveal .footer > * {
font-size: 0.8rem;
}
#title-slide {
text-align: left;
.subtitle,
.institute,
.quarto-title-affiliation,
.quarto-title-author-email {
font-style: italic;
color: #7F7F7F;
}
.author, .quarto-title-author-name {
color: $body-color;
}
.quarto-title-authors {
display: flex;
justify-content: left;
.quarto-title-author {
padding-left: 0em;
padding-right: 0em;
width: 100%;
}
}
p.author::before, div.quarto-title-author::before {
content: "";
display: block;
border: none;
background-color: $body-color;
color: $body-color;
height: 3px;
margin-bottom: 1em;
}
}