-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew_reveal.css
69 lines (53 loc) · 1.69 KB
/
new_reveal.css
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
/* Style sheet for Reveal.js Presentations
Author: Vincent Bauer, modified by Karin Steffen
Date: 3/25/2016, 2019-12-09
*/
<style>
/* R code */
.reveal pre code { /* code boxes */
word-wrap: normal; /* wrap code */
overflow: visible; /* wrap code */
white-space: pre-line; /* wrap code */
background-color: #FEFCFF; /* code output bg color*/
width: 950px; /* larger box*/
font-size: 80%; /*was 80%*/
}
.reveal pre code.sourceCode { /* R input code */
background-color: #f5f5f5; /* code bg color*/
}
.reveal pre { /* code section */
margin-left: 0px; /* left align code section */
margin-top: -5px; /* KS: was 0, kinda improves: less spacing between R code blocks*/
margin-bottom: -5px; /* KS: was 0, kinda improves: less spacing between R code blocks*/
width: 950px; /* larger box*/
font-size: 80%; /*was 80%*/
background-color: #f5f5f5; /* I don't think this matters */
}
.reveal pre.text code { /* code section when highlight=FALSE*/
white-space: pre-line; /* wrapping, although it overflows*/
}
/* Headings */
.reveal h1 { /* Heading 1 */
text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); /* shadows */
font-weight: bold; /* bold */
}
.reveal h2.author { /* Heading 2 for an author */
font-style: normal; /* could make bold or italics */
}
/* Images */
.reveal section img{ /* images */
border: 0px; /* no border but still shadow */
width: 60%; /* KS*/
height: 60%; /* KS*/
}
/* Slide content area */
/* these need to be at the bottom, do NOT move them */
.reveal .slides { /* all slide content */
text-align: left; /* left align */
font-size: 80%; /* smaller text */
}
.reveal .slides section>* { /* this is for left align */
margin-left: 0;
margin-right: 0;
}
</style>