diff options
author | Prabhu Ramachandran | 2018-05-18 23:29:57 +0530 |
---|---|---|
committer | Prabhu Ramachandran | 2018-05-18 23:29:57 +0530 |
commit | fb7c35882bdf2b611a28449b2f27ed2b289803e2 (patch) | |
tree | 92dff2028f9ca8e681901f05470a6996932dd810 /advanced_python/rise.css | |
parent | eb7a89c4400cdb3fa7fe09289e10a3159a5e2c57 (diff) | |
download | python-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.css | 21 |
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% +} |