diff options
author | FChannel0 <77419041+FChannel0@users.noreply.github.com> | 2021-08-20 23:25:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-20 23:25:47 -0700 |
commit | cc4165f07a406cdd89e6a3864cac6a367f281513 (patch) | |
tree | 6b8959d49acdb95f57dd10717e729a98e252471f /static/css/themes/default.css | |
parent | 502558e0bdaf67ca4c012fc1983f42430b8854cd (diff) | |
parent | 8d28fd2ad688051fe06813026d82661b76617602 (diff) |
Merge pull request #54 from KushBlazingJudah/development
themes fixup
Diffstat (limited to 'static/css/themes/default.css')
-rw-r--r-- | static/css/themes/default.css | 39 |
1 files changed, 37 insertions, 2 deletions
diff --git a/static/css/themes/default.css b/static/css/themes/default.css index 24e85e6..8b93e51 100644 --- a/static/css/themes/default.css +++ b/static/css/themes/default.css @@ -126,7 +126,8 @@ a.reply { } .popup-box { - position: absolute; + position: fixed; + min-width: 300px; width: min-content; z-index: 9; display: block; @@ -151,7 +152,6 @@ a.reply { .newsbox-news { text-align: left; - margin-left: 25px; margin-top: 25px; padding: 25px; } @@ -160,3 +160,38 @@ a.reply { .newsbox-news h3 { margin: 0; } + +#stopTablePost { + float: right; + display: none; +} + +#boardGrid { + display: grid; + grid-auto-columns: 1fr; + border: 4px solid #820404; + background-color: #f9f9e0; +} + +#boardGridHeader { + border-bottom: 2px solid #820404; + display: inline-grid; +} + +.boardGridCell { + white-space: nowrap; + display: inline-grid; + text-align: left; + padding: 5px; + border-top: 2px solid #820404; + border-left: 2px solid #820404; +} + +/* these may or may not work. my CSS is poor so i just kinda did stuff until it worked. */ +.boardGridCell:nth-child(-n+4) { + border-top: none; +} + +.boardGridCell:nth-child(3n+2) { + border-left: none; +} |