forked from eelregit/pmwd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrise.css
More file actions
78 lines (64 loc) · 1.62 KB
/
Copy pathrise.css
File metadata and controls
78 lines (64 loc) · 1.62 KB
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
70
71
72
73
74
75
76
77
78
.reveal {
font-family: Palatino, serif;
}
.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 {
font-family: Palatino, serif;
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%;
}
/* outline */
div.cell.code_cell.rendered, div.input_area {
border-width: 5px;
}
div.cell.code_cell.rendered {
border-radius: 0px 0px 45px 0px;
}
div.input_area {
border-radius: 0px 0px 35px 0px;
}
/* this is only to check that rise.css properly gets
* ignored when quitting reveal mode */
div.text_cell_render.rendered_html {
color: #5050b0;
}
/*
* this is to void xarray's html output to show the fallback textual representation
* see also
* xarray.md and
* https://github.com/damianavila/RISE/issues/594
*/
.reveal pre.xr-text-repr-fallback {
display: none;
}