summaryrefslogtreecommitdiff
path: root/advanced_python/rise.css
diff options
context:
space:
mode:
authorPrabhu Ramachandran2018-05-18 23:29:57 +0530
committerPrabhu Ramachandran2018-05-18 23:29:57 +0530
commitfb7c35882bdf2b611a28449b2f27ed2b289803e2 (patch)
tree92dff2028f9ca8e681901f05470a6996932dd810 /advanced_python/rise.css
parenteb7a89c4400cdb3fa7fe09289e10a3159a5e2c57 (diff)
downloadpython-workshops-fb7c35882bdf2b611a28449b2f27ed2b289803e2.tar.gz
python-workshops-fb7c35882bdf2b611a28449b2f27ed2b289803e2.tar.bz2
python-workshops-fb7c35882bdf2b611a28449b2f27ed2b289803e2.zip
Add material on generators/iterators.
Diffstat (limited to 'advanced_python/rise.css')
-rw-r--r--advanced_python/rise.css21
1 files changed, 21 insertions, 0 deletions
diff --git a/advanced_python/rise.css b/advanced_python/rise.css
new file mode 100644
index 0000000..11d733d
--- /dev/null
+++ b/advanced_python/rise.css
@@ -0,0 +1,21 @@
+/* Customizations for RISE slides
+ */
+
+/* Increase font size for the code cells.
+*/
+
+div.cell.code_cell {
+ font-size: 150%;
+}
+
+/*
+div.CodeMirror-lines {
+ font-size: 125%;
+}*/
+
+/* Tables were rendered out as tiny values
+ since the font-size was set to 12px somehow.
+*/
+.rendered_html table {
+ font-size: 100%
+}