index.css 672 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. body {
  6. background: white;
  7. margin: 0;
  8. padding: 0;
  9. }
  10. #main {
  11. position: absolute;
  12. top: 4px;
  13. left: 4px;
  14. right: 4px;
  15. bottom: 4px;
  16. border-bottom: 1px solid #e0e0e0;
  17. }
  18. .jp-Toolbar {
  19. min-height: 27px;
  20. }
  21. .jp-CodeCell {
  22. display: flex;
  23. flex-direction: column;
  24. }
  25. .jp-Cell-inputWrapper {
  26. flex: 0 0 auto;
  27. }
  28. .jp-Cell-outputWrapper {
  29. flex: 1 1 auto;
  30. }
  31. .jp-OutputArea {
  32. overflow: visible;
  33. }