diff options
author | floppydiskette <floppydisk@hyprcat.net> | 2024-10-06 04:11:46 +0100 |
---|---|---|
committer | floppydiskette <floppydisk@hyprcat.net> | 2024-10-06 04:11:46 +0100 |
commit | 5dc6252c4c887ed44d0861fb3638b3954a9b2a5c (patch) | |
tree | 9efd283d0ef95f71b36aa3a6a4179fdd477758e2 /public/css/master.css | |
parent | d857991d18332ba2b41844a10ba55ae37388c74f (diff) |
Update page layoutfeat-privacy
- Add more buttons
- Style <hr> elements
- Remove 'pixel nes' font from <h3> and <h4> elements
- Change footer grid column sizes to auto (previously 1fr)
- Add 5px top margin to sidebar buttons
Diffstat (limited to 'public/css/master.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; +} |