-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.css
More file actions
40 lines (33 loc) · 739 Bytes
/
theme.css
File metadata and controls
40 lines (33 loc) · 739 Bytes
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
/* Custom theme for Coding Pirates presentations */
:root {
--r-main-font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell;
--r-heading-font: var(--r-main-font);
--r-code-font: 'Source Code Pro', monospace;
}
.reveal {
font-family: var(--r-main-font);
}
.reveal h1, .reveal h2, .reveal h3, .reveal h4 {
font-family: var(--r-heading-font);
color: #2d5986;
}
.reveal code {
font-family: var(--r-code-font);
background: #f0f0f0;
padding: 2px 5px;
border-radius: 4px;
}
.reveal pre code {
padding: 15px;
border-radius: 8px;
}
.reveal img {
max-height: 500px;
margin: 20px auto;
}
.reveal .slides {
text-align: left;
}
.reveal .slides section {
height: 100%;
}