|
|
|
|
|
:root { |
|
--distill-gray: rgb(107, 114, 128); |
|
--distill-gray-light: rgb(185, 185, 185); |
|
--distill-gray-lighter: rgb(228, 228, 228); |
|
--distill-gray-lightest: rgb(245, 245, 245); |
|
--distill-blue: #007BFF; |
|
} |
|
|
|
|
|
[id^="plot-"] { |
|
display: flex; |
|
flex-direction: column; |
|
align-items: center; |
|
gap: 15px; |
|
} |
|
[id^="plot-"] figure { |
|
margin-bottom: 0px; |
|
margin-top: 0px; |
|
padding: 0px; |
|
} |
|
|
|
.plotly_controls { |
|
display: flex; |
|
flex-wrap: wrap; |
|
flex-direction: row; |
|
justify-content: center; |
|
align-items: flex-start; |
|
gap: 30px; |
|
} |
|
|
|
|
|
.plotly_input_container { |
|
display: flex; |
|
align-items: center; |
|
flex-direction: column; |
|
gap: 10px; |
|
} |
|
|
|
|
|
.plotly_input_container > select { |
|
padding: 2px 4px; |
|
|
|
line-height: 1.5em; |
|
text-align: center; |
|
border-radius: 4px; |
|
font-size: 12px; |
|
background-color: var(--distill-gray-lightest); |
|
outline: none; |
|
} |
|
|
|
|
|
|
|
.plotly_slider { |
|
display: flex; |
|
align-items: center; |
|
gap: 10px; |
|
} |
|
|
|
.plotly_slider > input[type="range"] { |
|
-webkit-appearance: none; |
|
height: 2px; |
|
background: var(--distill-gray-light); |
|
border-radius: 5px; |
|
outline: none; |
|
} |
|
|
|
.plotly_slider > span { |
|
font-size: 14px; |
|
line-height: 1.6em; |
|
min-width: 16px; |
|
} |
|
|
|
.plotly_slider > input[type="range"]::-webkit-slider-thumb { |
|
-webkit-appearance: none; |
|
appearance: none; |
|
width: 18px; |
|
height: 18px; |
|
border-radius: 50%; |
|
background: var(--distill-blue); |
|
cursor: pointer; |
|
} |
|
|
|
.plotly_slider > input[type="range"]::-moz-range-thumb { |
|
width: 18px; |
|
height: 18px; |
|
border-radius: 50%; |
|
background: var(--distill-blue); |
|
cursor: pointer; |
|
} |
|
|
|
|
|
.plotly_input_container > label { |
|
font-size: 14px; |
|
font-weight: bold; |
|
} |
|
|
|
.main-plot-container { |
|
margin-top: 21px; |
|
margin-bottom: 35px; |
|
} |
|
|
|
.main-plot-container > figure { |
|
display: block !important; |
|
|
|
margin-bottom: 0px; |
|
margin-top: 0px; |
|
} |
|
.main-plot-container > div { |
|
display: none !important; |
|
} |
|
|
|
|
|
@media (min-width: 768px) { |
|
.main-plot-container > figure { |
|
display: none !important; |
|
} |
|
.main-plot-container > div { |
|
display: flex !important; |
|
} |
|
} |
|
|
|
d-byline .byline { |
|
grid-template-columns: 1fr; |
|
grid-column: text; |
|
font-size: 0.9rem; |
|
line-height: 1.8em; |
|
} |
|
|
|
@media (min-width: 768px) { |
|
d-byline .byline { |
|
grid-template-columns: 5fr 1fr 1fr; |
|
} |
|
} |
|
|
|
#title-plot { |
|
margin-top: 0px; |
|
} |
|
|
|
d-contents > nav a.active { |
|
text-decoration: underline; |
|
} |