-
Notifications
You must be signed in to change notification settings - Fork 0
/
rise.css
57 lines (47 loc) · 1.26 KB
/
rise.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
/* this goes with my global default setting
* that has rise use reveal's theme sky
*/
.reveal {
font-family: "Quicksand", sans-serif;
}
.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 {
text-transform: initial; /* sky.css says uppercase */
letter-spacing: initial ; /* sky.css says -0.08em */
}
body.rise-enabled .reveal ol, body.rise-enabled .reveal dl, body.rise-enabled .reveal ul {
margin-left: 0.1em;
margin-top: 0.2em;
}
.reveal .rendered_html h1:first-child,
.reveal .rendered_html h2:first-child,
.reveal .rendered_html h3:first-child,
.reveal .rendered_html h4:first-child,
.reveal .rendered_html h5:first-child {
margin-top: 0.2em;
}
h1.plan, h2.plan, h3.plan {
text-align: center;
padding-bottom: 30px;
}
ul.plan>li>span.plan-bold {
font-size: 110%;
padding: 4px;
font-weight: bold;
background-color: #eee;
}
ul.plan>li>ul.subplan>li>span.plan-bold {
font-weight: bold;
}
.plan-strike {
opacity: 0.4;
/* text-decoration: line-through; */
}
div.plan-container {
display: grid;
grid-template-columns: 50% 50%;
}
/* something big and obvious again just to outline
that this file is actually loaded */
div.cell.code_cell.rendered, div.input_area {
border-width: 10px;
}