index.css 545 B

1234567891011121314151617181920212223242526272829303132
  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-plotly: url('./plotly.svg');
  8. }
  9. /* Base styles */
  10. .jp-RenderedPlotly {
  11. width: 100%;
  12. height: 100%;
  13. padding: 0;
  14. overflow: hidden;
  15. }
  16. /* Document styles */
  17. .jp-MimeDocument .jp-RenderedPlotly {
  18. overflow: hidden;
  19. }
  20. /* Output styles */
  21. .jp-OutputArea .jp-RenderedPlotly {
  22. min-height: 360px;
  23. }
  24. /* Document icon */
  25. .jp-PlotlyIcon {
  26. background-image: var(--jp-icon-plotly);
  27. }