index.css 681 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. }