-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (37 loc) · 816 Bytes
/
style.css
File metadata and controls
43 lines (37 loc) · 816 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
41
42
43
.reveal h1 {
font-size: 2.5rem;
}
.reveal .slides {
font-family: 'Fira Sans', sans-serif;
}
/* Set reveal.js root background to white */
.reveal {
background-color: white;
color: black;
}
/* Default slide background and text color */
.reveal .slides section {
background-color: white;
color: black;
}
/* Ensure headings use the inherited color (black by default) */
.reveal .slides h1,
.reveal .slides h2,
.reveal .slides h3,
.reveal .slides h4,
.reveal .slides h5,
.reveal .slides h6 {
color: inherit;
}
/* Allow slides with custom background to override background only */
.reveal .slides section[data-background-color] {
background-color: unset;
}
#astronaut {
position: fixed;
width: 100px;
height: auto;
z-index: 1000;
pointer-events: none;
transition: all 0.3s ease-in-out;
}