index.css 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. @import url('~@phosphor/widgets/style/index.css');
  6. /*-----------------------------------------------------------------------------
  7. | General
  8. |----------------------------------------------------------------------------*/
  9. body {
  10. margin: 0;
  11. padding: 0;
  12. overflow: hidden;
  13. font-family: var(--jp-ui-font-family);
  14. background: var(--jp-layout-color3);
  15. }
  16. .jp-ApplicationShell {
  17. position: absolute;
  18. top: 0;
  19. left: 0;
  20. right: 0;
  21. bottom: 0;
  22. }
  23. .p-Widget.p-mod-hidden {
  24. display: none !important;
  25. }
  26. /*-----------------------------------------------------------------------------
  27. | Import children style files
  28. |----------------------------------------------------------------------------*/
  29. @import './dockpanel.css';
  30. @import './menus.css';
  31. @import './sidepanel.css';
  32. @import './tabs.css';