2022-01-13 09:20:16 -05:00
|
|
|
* {
|
|
|
|
font-family: "JetBrains Mono", monospace;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre {
|
|
|
|
margin: 0px;
|
|
|
|
line-height: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
desc {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
font-size: 10px;
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=text], input[type=submit] {
|
|
|
|
padding: 3px;
|
|
|
|
}
|
|
|
|
|
2023-02-06 06:22:11 -05:00
|
|
|
pre {
|
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|
|
|
|
|
2022-01-13 09:20:16 -05:00
|
|
|
main {
|
|
|
|
margin: 20px;
|
|
|
|
}
|
|
|
|
|
2022-06-22 04:42:23 -05:00
|
|
|
small {
|
|
|
|
font-size: 9px;
|
|
|
|
color: #888;
|
|
|
|
}
|
|
|
|
|
2023-08-10 08:44:11 -05:00
|
|
|
.not-important {
|
|
|
|
color: #888;
|
|
|
|
font-weight: 200;
|
|
|
|
}
|
|
|
|
|
2022-06-22 04:42:23 -05:00
|
|
|
small > strong {
|
|
|
|
font-size: 9px;
|
|
|
|
}
|
|
|
|
|
2022-01-13 09:20:16 -05:00
|
|
|
nav {
|
|
|
|
position: fixed;
|
|
|
|
width: 100vw;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
padding: 5px 20px;
|
|
|
|
display: flex;
|
|
|
|
background: #e3e3e3;
|
|
|
|
}
|
|
|
|
|
2023-08-08 02:59:57 -05:00
|
|
|
nav > .title {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav > .title > h1 {
|
2022-01-13 09:20:16 -05:00
|
|
|
padding: 0px;
|
|
|
|
margin: 0px;
|
|
|
|
font-size: 11px;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav > div {
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav > div:not(:last-child) {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table {
|
|
|
|
margin-top: 25px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-row {
|
|
|
|
display: flex;
|
|
|
|
padding-bottom: 15px;
|
|
|
|
/* width: 100%; */
|
|
|
|
/* border: 1px solid red; */
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-key {
|
|
|
|
font-weight: 600;
|
|
|
|
width: 60px;
|
|
|
|
padding: 4px;
|
|
|
|
|
|
|
|
padding-top: 40px;
|
|
|
|
margin-top: -40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-val {
|
|
|
|
font-weight: 200;
|
|
|
|
color: #333;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.multiline {
|
|
|
|
margin-top: 15px;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.multiline .table-key {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
border-bottom: 1px dashed #dddddd;
|
|
|
|
/* padding: 4px; */
|
|
|
|
width: unset;
|
|
|
|
}
|
|
|
|
|
|
|
|
.index {
|
|
|
|
margin-top: 40px;
|
2022-06-22 04:42:23 -05:00
|
|
|
display: flex;
|
2022-01-13 09:20:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.index > section {
|
|
|
|
padding: 10px;
|
|
|
|
background-color: #e3e3e3;
|
2022-06-22 04:42:23 -05:00
|
|
|
max-width: 400px;
|
|
|
|
margin: 5px;
|
|
|
|
height: fit-content;
|
2022-01-13 09:20:16 -05:00
|
|
|
}
|
|
|
|
|
2022-06-22 04:42:23 -05:00
|
|
|
.index fieldset:not(:first-child) {
|
|
|
|
margin-top: 15px;
|
2022-01-13 09:20:16 -05:00
|
|
|
}
|
|
|
|
|
2022-06-22 04:42:23 -05:00
|
|
|
/* .index > section:not(:last-child) { */
|
|
|
|
/* margin-bottom: 10px; */
|
|
|
|
/* } */
|
|
|
|
|
2022-01-13 09:20:16 -05:00
|
|
|
|
|
|
|
.index > section > h2 {
|
|
|
|
margin-top: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.horizontal-list {
|
|
|
|
margin: 20px;
|
|
|
|
margin-top: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.horizontal-list ul {
|
|
|
|
display: flex;
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
.horizontal-list li {
|
|
|
|
list-style: none;
|
|
|
|
padding: 0px;
|
|
|
|
margin: 0px;
|
|
|
|
line-height: 18px;
|
|
|
|
min-width: 210px;
|
|
|
|
margin: 0px 20px;
|
|
|
|
display: flex;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
2022-10-14 07:19:12 -05:00
|
|
|
|
|
|
|
|
2022-01-13 09:20:16 -05:00
|
|
|
.horizontal-list li:hover {
|
|
|
|
background-color: #e9e9e9;
|
|
|
|
}
|
|
|
|
|
2022-10-14 07:19:12 -05:00
|
|
|
.horizontal-list li > *:not(:last-child) {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
2022-01-13 09:20:16 -05:00
|
|
|
.horizontal-list li > a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
2022-10-14 07:19:12 -05:00
|
|
|
.horizontal-list li > .date {
|
|
|
|
font-weight: 200;
|
|
|
|
color: #686868;
|
|
|
|
min-width: 210px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-06-22 04:42:23 -05:00
|
|
|
form .row {
|
|
|
|
padding: 5px 0;
|
|
|
|
}
|
|
|
|
|
2022-07-06 08:58:32 -05:00
|
|
|
.set-of-inputs {
|
|
|
|
flex-direction: column;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.set-of-inputs input:not(:last-child) {
|
|
|
|
margin-bottom: 3px;
|
|
|
|
}
|
|
|
|
|