index.css 622 B

12345678910111213141516171819202122232425262728
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) 2014-2016, Jupyter Development Team.
  3. |
  4. | Distributed under the terms of the Modified BSD License.
  5. |----------------------------------------------------------------------------*/
  6. body {
  7. background: white;
  8. margin: 0;
  9. padding: 0;
  10. font-family: var(--jp-ui-font-family);
  11. }
  12. #main {
  13. position: absolute;
  14. top: 4px;
  15. left: 4px;
  16. right: 4px;
  17. bottom: 4px;
  18. }
  19. #main .lm-CommandPalette {
  20. border-top: var(--jp-border-width) solid var(--jp-border-color2);
  21. min-width: 300px;
  22. }
  23. #main .jp-ConsolePanel {
  24. margin-top: 0;
  25. }