1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
body {
visibility: hidden;
background-color: black;
color: white;
font-family: 'Roboto Slab', sans-serif;
overflow-y: scroll;
}
h1, h2, h3 {
margin-left: 20px;
}
p, li {
color: #EEE;
margin-left: 20px;
}
ul {
margin-top: .5em;
margin-bottom: 1em;
}
div.chart {
height: 580px;
}
p.copyright {
color: #EEE;
font-size: 0.8em;
}
h1.homepage {
margin-bottom: 0em;
}
p.homepage {
color: #EEE;
margin-top: 0em;
font-weight: bold;
}
.view-toggle {
cursor: pointer;
user-select: none;
}
svg.arrow-down-circle {
fill: currentColor;
width: 1em;
height: 1em;
color: #EEE;
vertical-align: -.1em;
}
span.tooltip_scalability_title {
font-weight: bold;
font-size: 1.2em;
}
table.tooltip_scalability {
text-align: right;
}
span.highcharts-caption {
text-wrap: balance;
overflow: visible;
}
|