UNPKG

545 BCSSView Raw
1/**
2 Copyright (c) Jupyter Development Team.
3 Distributed under the terms of the Modified BSD License.
4*/
5
6/* Add CSS variables to :root */
7:root {
8 --jp-icon-plotly: url('./plotly.svg');
9}
10
11/* Base styles */
12.jp-RenderedPlotly {
13 width: 100%;
14 height: 100%;
15 padding: 0;
16 overflow: hidden;
17}
18
19/* Document styles */
20.jp-MimeDocument .jp-RenderedPlotly {
21 overflow: hidden;
22}
23
24/* Output styles */
25.jp-OutputArea .jp-RenderedPlotly {
26 min-height: 360px;
27}
28
29/* Document icon */
30.jp-PlotlyIcon {
31 background-image: var(--jp-icon-plotly);
32}
\No newline at end of file