48 lines
563 B
CSS
48 lines
563 B
CSS
body {
|
|
background-color: #09343f;
|
|
color: #b6b6b6;
|
|
font-family: monospace;
|
|
font-size: 8pt;
|
|
}
|
|
a {
|
|
color: #c6f4ff;
|
|
}
|
|
a:visited {
|
|
color: #85b7c3;
|
|
}
|
|
.box {
|
|
width: fit-content;
|
|
}
|
|
.box .name {
|
|
width: 15em;
|
|
font-weight: bold;
|
|
text-align: right;
|
|
margin-right: 6pt;
|
|
}
|
|
.box .value {
|
|
width: fit-content;
|
|
}
|
|
.flex {
|
|
display: flex;
|
|
}
|
|
.monospace {
|
|
font-family: monospace;
|
|
font-size: 8pt;
|
|
}
|
|
.dim {
|
|
opacity: 0.25;
|
|
}
|
|
.padded {
|
|
padding: 20px;
|
|
}
|
|
svg {
|
|
width: 800px;
|
|
}
|
|
th {
|
|
text-align: left;
|
|
padding: 10px;
|
|
}
|
|
td {
|
|
background-color: #0c2025;
|
|
}
|