Last active
December 18, 2017 11:45
-
-
Save anandology/a7a2797ddee1b74ca70bfca858f4e331 to your computer and use it in GitHub Desktop.
Custom CSS to optimize jupyter notebook presentation in full-screen when zoomed in
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
FILE: ~/.jupyter/custom/custom.css | |
Custom CSS to optimize jupyter notebook presentation in full-screen when zoomed in. | |
*/ | |
@media all and (max-width: 800px) { | |
/* Hide prompt when zoomed in */ | |
.prompt { | |
display: none !important; | |
} | |
/* Hide header, toolbar and menubar when zoomed in */ | |
#header-container, #maintoolbar, #menubar { | |
display: none; | |
} | |
#notebook { | |
padding: 0px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment