0.1.2: visual improvements

This commit is contained in:
2025-01-15 21:32:07 -05:00
parent 69868d0f7c
commit 7d07873536
8 changed files with 55 additions and 21 deletions

View File

@@ -54,6 +54,7 @@ table {
background-color: #2a2a2a;
border-collapse: collapse;
width: 100%;
min-width: 42em;
}
td,
@@ -200,6 +201,8 @@ input[type="submit"] {
display: grid;
grid-template-columns: auto 1fr;
gap: .65em;
word-break: keep-all;
white-space: nowrap;
.span-2 {
grid-column: span 2;
@@ -208,6 +211,7 @@ input[type="submit"] {
.logs {
font-family: 'Courier New', monospace;
font-size: 0.9em;
border-left: #d96a14 .2em solid;
background: #2a2a2a;
margin-top: 1em;
@@ -253,10 +257,10 @@ input[type="submit"] {
right: 1.3em;
bottom: 1.6em;
padding: 1em;
background-color: rgba(15,15,15,.8);
background-color: rgba(15, 15, 15, .8);
cursor: pointer;
input {
cursor: inherit;
}
}
}

View File

@@ -15,4 +15,32 @@
.content {
margin-left: 0;
}
.logs {
font-size: 0.75em;
}
}
@media screen and (max-width:28rem) {
body {
font-size: 13pt;
}
.grid-2col {
grid-template-columns: 1fr;
.span-2 {
grid-column: initial;
}
&> :nth-last-child(n+2):nth-child(odd) {
font-weight: bold;
font-size: 1.1em;
&::after {
content: ":";
}
}
}
}