index.css 573 B

123456789101112131415161718192021222324252627282930313233
  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-icon-vdom: url('./react.svg');
  8. }
  9. /* Base styles */
  10. .jp-RenderedVDOM {
  11. width: 100%;
  12. height: 100%;
  13. padding: 0;
  14. overflow: auto;
  15. }
  16. /* Document styles */
  17. .jp-MimeDocument .jp-RenderedVDOM {
  18. padding: 5px;
  19. }
  20. /* Output styles */
  21. .jp-OutputArea .jp-RenderedVDOM {
  22. }
  23. /* Document icon */
  24. .jp-VDOMIcon {
  25. background-image: var(--jp-icon-vdom);
  26. background-size: 24px;
  27. background-position: center !important;
  28. }