reduce inline css usage,

fix additional font inconsistencies,
fix px unit used with 0 values
This commit is contained in:
2026-06-09 23:33:27 +00:00
parent 10ef24e76b
commit 8f72aaf255
12 changed files with 144 additions and 113 deletions
+4 -7
View File
@@ -5,23 +5,20 @@
<script src="scripts/settings.js" type="module"></script>
<link rel="modulepreload" href="scripts/utils.js">
<style>
legend {
margin-bottom: 25px;
}
label {
display: flex;
height: fit-content;
width: 100%;
align-items: center;
justify-content: left;
column-gap: 10px;
column-gap: 0.5em;
}
label + p {
margin-top: 5px;
margin-bottom: 25px;
margin-top: 0.5em;
margin-bottom: 1em;
}
p:last-child {
margin-bottom: 0px;
margin-bottom: 0;
}
</style>
</head>