Created
February 22, 2020 05:57
-
-
Save anandology/5103880529e5e65dc79a34c3450da2d0 to your computer and use it in GitHub Desktop.
Custom CSS to optimize the 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 the notebook presentation in full-screen when zoomed in. | |
*/ | |
@media all and (max-width: 800px) { | |
.prompt { | |
display: none !important; | |
} | |
#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