index.css 856 B

123456789101112131415161718192021222324252627
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. .jp-FileEditor {
  6. }
  7. .jp-FileEditor > .jp-Toolbar {
  8. min-height: var(--jp-toolbar-micro-height);
  9. background: var(--jp-toolbar-background);
  10. border-bottom: 1px solid var(--jp-toolbar-border-color);
  11. box-shadow: var(--jp-toolbar-box-shadow);
  12. z-index: 10;
  13. }
  14. /*-----------------------------------------------------------------------------
  15. | Presentation Mode (.jp-mod-presentationMode)
  16. |----------------------------------------------------------------------------*/
  17. .jp-mod-presentationMode .jp-FileEditor {
  18. --jp-code-font-size: var(--jp-code-presentation-font-size);
  19. }