This repository was archived by the owner on May 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrise.css
More file actions
110 lines (89 loc) · 2.06 KB
/
rise.css
File metadata and controls
110 lines (89 loc) · 2.06 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/* ---------- markdown cells
*/
body.rise-enabled div.inner_cell>div.text_cell_render.rendered_html {
font-size: 80%;
}
/* ---- tables inside markdown cells
*/
body.rise-enabled div.inner_cell>div.text_cell_render.rendered_html>table {
font-size: 100%
}
/* ---------- code cells - input
*/
body.rise-enabled div.inner_cell>div.input_area {
font-size: 140%;
}
/* ---------- code cells - output
*/
body.rise-enabled div.output_subarea.output_text.output_result {
font-size: 140%;
}
body.rise-enabled div.output_subarea.output_text.output_stream.output_stdout {
font-size: 140%;
}
body.rise-enabled div.output_subarea.output_text.output_error {
font-size: 110%;
}
/* -------- displaying dataframes
*/
body.rise-enabled table.dataframe {
font-size: 80%;
}
body.rise-enabled table.dataframe > thead > tr > th {
text-align: left;
}
body.rise-enabled table.dataframe > thead > tr > td {
text-align: right;
}
body.rise-enabled table.dataframe > tbody > tr > td {
text-align: right;
}
/* -------- displaying documentation
*/
body.rise-enabled div.container {
font-size: 180%;
}
/* --------- title slide
*/
/*
.title-slide {
font-size: 150%;
text-align: center;
}
*/
body.rise-enabled .title-slide {
color: #586e75;
font-family: "Lato", sans-serif;
font-size: 2.5em;
text-align: center;
text-transform: none;
}
/* FOOTER STYLES
-----------------------------------------*/
/* Sticky Footer - http://css-tricks.com/snippets/css/sticky-footer */
.page-wrap {
min-height: 100%;
margin-bottom: -55px; /* must be the same height as footer */
}
.page-wrap:after {
content: "";
display: block;
}
footer,
.page-wrap:after {
height: 55px; /* however tall you want the footer to be */
}
footer {
padding: 1px;
}
.footer-left {
float: left;
}
.footer-right {
float: right;
}
/* Block quotes */
body.rise-enabled blockquote {
width: 85%;
}
body.rise-enabled > div.fragment.visible.current-fragment > div.cell.code_cell.rendered.selected > div.output_wrapper > div.output > div > div.output_subarea.output_text.output_result > pre