Skip to content

Instantly share code, notes, and snippets.

@anandology
Last active December 18, 2017 11:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anandology/a7a2797ddee1b74ca70bfca858f4e331 to your computer and use it in GitHub Desktop.
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
/*
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