30 lines
401 B
CSS
30 lines
401 B
CSS
body {
|
|
background-color: #2a5b6c;
|
|
background-color: #114754;
|
|
color: #b6b6b6;
|
|
font-family: monospace;
|
|
font-size: 8pt;
|
|
}
|
|
.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;
|
|
}
|
|
svg {
|
|
width: 800px;
|
|
}
|