diff options
Diffstat (limited to 'public/css')
-rw-r--r-- | public/css/master.css | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/public/css/master.css b/public/css/master.css index 1dcebd9..6c91fc1 100644 --- a/public/css/master.css +++ b/public/css/master.css @@ -54,9 +54,7 @@ select { } h1, -h2, -h3, -h4 { +h2 { font-family: "pixel nes", sans-serif; } @@ -69,6 +67,11 @@ p { margin: 0; } +hr { + border: none; + border-top: 1px solid var(--foreground); +} + a { color: var(--links); text-decoration: underline dotted; @@ -167,7 +170,7 @@ footer, footer { display: grid; - grid-template-columns: repeat(2, 1fr); + grid-template-columns: repeat(2, auto); grid-template-rows: 1fr; grid-column-gap: 0; grid-row-gap: 0; @@ -334,3 +337,7 @@ table.computers th { .calculator-spec-table tr td:first-child { background-color: var(--background-secondary); } + +.sidebar > .section > button { + margin-top: 5px; +} |