-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslideshow.css
More file actions
243 lines (205 loc) · 3.89 KB
/
slideshow.css
File metadata and controls
243 lines (205 loc) · 3.89 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
body
{
/*font-size : 12pt;*/
font-family : serif;
position : absolute;
}
body
{
padding : 1ex;
}
body
{
font-family : monospace;
max-width : 90ex;
}
body > div
{
font-family : sans-serif;
text-align : justify;
}
body.slideshow > div
{
text-align : inherit;
}
h1, h2, h3, h4, h5, h6
{
border-bottom : 1px solid #ccc;
}
body.slideshow
{
max-width : inherit;
font-size : 24pt;
position : inherit;
}
body.slideshow div.slide
{
display : none;
}
body.slideshow div.slide.current
{
display : block;
}
h1
{
font-size : 150%;
}
h2
{
font-size : 125%;
}
/* colors from python.org */
/*
div.pythoncode pre
{
padding: 1ex;
background-color: #eeffcc;
color: #333333;
border: 1px solid #ac9;
border-left: none;
border-right: none;
}
*/
code, div.pythoncode
{
background-color: #f0f0f0;
}
div.pythoncode
{
margin : 1em;
margin-left : 0px;
margin-right : 0px;
border: 1px solid #ccc;
border-left: none;
border-right: none;
text-align : left;
}
div.pythoncode > div.container
{
margin : 1ex;
overflow : auto;
clear : right;
}
div.pythoncode div.line
{
font-family : monospace;
white-space : pre;
min-height : 1em;
}
div.pythoncode div.line.output
{
white-space : pre-wrap;
}
.highlight div.pythoncode div.line:hover
{
background : #ffee66;
}
/*
div.output.image
{
float : right;
position : absolute;
right : 0px;
}
div.output.image object
{
position : absolute;
left : 0px;
width : 200px;
height : 200px;
border : 1px solid #ccc;
clear : right;
}
*/
div.output.image img
{
width : 100%;
height : auto;
}
body.slideshow div.output.image img
{
margin-left : 10%;
width : 80%;
height : auto;
}
div.pythoncode div.header_button
{
font-size : 75%;
float : right;
cursor : pointer;
background : #ccc;
padding-left : 1ex;
padding-right : 1ex;
padding-bottom : .25ex;
padding-top : .25ex;
margin-right : 1ex;
margin-left : 1ex;
border-bottom-left-radius : .75ex;
border-bottom-right-radius : .75ex;
}
div.pythoncode div.header_button.show_output
{
display : none;
}
div.pythoncode div.header_button.hide_output
{
display : block;
}
div.pythoncode.output_hidden div.header_button.show_output
{
display : block;
}
div.pythoncode.output_hidden div.header_button.hide_output, div.pythoncode.output_hidden span.gp
{
display : none;
}
div.pythoncode.output_hidden div.output
{
display : none;
}
div.pythoncode div.header_button.enable_debugger
{
display : block;
}
div.pythoncode div.header_button.disable_debugger
{
display : none;
}
div.pythoncode.debugger_enabled div.header_button.enable_debugger, div.pythoncode div.header_button.debugger_previous, div.pythoncode div.header_button.debugger_next, div.pythoncode div.header_button.debugger_first, div.pythoncode div.header_button.debugger_last
{
display : none;
}
div.pythoncode.debugger_enabled div.header_button.disable_debugger, div.pythoncode.debugger_enabled div.header_button.debugger_previous, div.pythoncode.debugger_enabled div.header_button.debugger_next, div.pythoncode.debugger_enabled div.header_button.debugger_first, div.pythoncode.debugger_enabled div.header_button.debugger_last
{
display : block;
}
a.debugger_data_url
{
display : none;
}
div.pythoncode div.event, div.pythoncode div.console, div.pythoncode div.stack
{
display : none;
}
div.pythoncode.debugger_enabled div.event, div.pythoncode.debugger_enabled div.console, div.pythoncode.debugger_enabled div.stack
{
display : block;
border-top : 1px solid #ccc;
}
div.pythoncode div.event div.container, div.pythoncode div.console div.container, div.pythoncode div.stack div.container
{
white-space : pre;
font-family : monospace;
margin : 1ex;
}
div.pythoncode div.event p, div.pythoncode div.console p, div.pythoncode div.stack p
{
margin : 1ex;
font-weight : bold;
}
div.pythoncode div.debug_cursor
{
background : #66ff66;
}
/* vim: ts=2:sts=2:sw=2:et:fdm=marker:fmr={{{,}}}
*/