index.css 602 B

1234567891011121314151617181920212223242526272829303132333435
  1. /**
  2. Copyright (c) Jupyter Development Team.
  3. Distributed under the terms of the Modified BSD License.
  4. */
  5. /* Add CSS variables to :root */
  6. :root {
  7. /*--jp-private-json-variable: 16px;*/
  8. }
  9. /* Base styles */
  10. .jp-RenderedJSON {
  11. width: 100%;
  12. height: 100%;
  13. padding: 0;
  14. overflow: hidden;
  15. }
  16. /* Patch for default ul.CodeMirror styles */
  17. .jp-RenderedJSON ul.CodeMirror {
  18. list-style: none;
  19. padding-left: 0;
  20. margin: 0;
  21. }
  22. /* Document styles */
  23. .jp-MimeDocument .jp-RenderedJSON {
  24. padding: 5px;
  25. padding-top: 0;
  26. overflow-y: auto;
  27. }
  28. /* Output styles */
  29. .jp-OutputArea .jp-RenderedJSON {
  30. }