Skip to content

Instantly share code, notes, and snippets.

@anandology
Created February 22, 2020 05:57
Show Gist options
  • Save anandology/5103880529e5e65dc79a34c3450da2d0 to your computer and use it in GitHub Desktop.
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
/*
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