index.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. /*-----------------------------------------------------------------------------
  6. | General
  7. |----------------------------------------------------------------------------*/
  8. body {
  9. margin: 0;
  10. padding: 0;
  11. overflow: hidden;
  12. }
  13. .jp-ApplicationShell {
  14. position: absolute;
  15. top: 0;
  16. left: 0;
  17. right: 0;
  18. bottom: 0;
  19. }
  20. .jp-ApplicationShell.jp-mod-devMode {
  21. border-top: 4px solid red;
  22. }
  23. #jp-main-dock-panel {
  24. padding: 5px;
  25. }
  26. #jp-top-panel {
  27. border-bottom: var(--jp-border-width) solid var(--jp-border-color0);
  28. background: var(--jp-layout-color1);
  29. display: flex;
  30. min-height: var(--jp-private-menubar-height);
  31. }
  32. /*-----------------------------------------------------------------------------
  33. | Import children style files
  34. |----------------------------------------------------------------------------*/
  35. @import './sidepanel.css';