From f7f323657ac2b52ce5a6b3d49ca6a0cdb3320938 Mon Sep 17 00:00:00 2001 From: Bobby Date: Sat, 31 Dec 2022 11:17:59 -0500 Subject: Some fixes and removed over engineered things, KISS baby --- static/css/main.css | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) (limited to 'static/css') diff --git a/static/css/main.css b/static/css/main.css index 5c87e59a..a3d7c516 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -46,6 +46,59 @@ input, textarea { font-family: Verdana,Helvetica,Arial,Sans-Serif; } +/* Full width auto spacing table... ellipsis if text overflows */ +#posts { + width: 100%; + border-collapse: collapse; + border-spacing: 0; + table-layout: fixed; +} + +#posts td { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + padding: 5px 0px; +} + +#posts th { + text-align: left; + padding: 5px 0px; + border-bottom: solid 1px #dddddd; + font-weight: bold; + text-transform: uppercase; + font-size: 11px; +} + +#posts tr { + border-bottom: solid 1px #dddddd; +} + + +/* Pagination Table */ +#pagination { + margin: 20px auto; + border-collapse: collapse; + font-weight: bold; +} + +#pagination a { + display: inline-block; + padding: 5px 10px; +} + + +.active { + color: #fff; +} + +.disabled { + color: #dddddd; + /* show invalid cursor */ + cursor: not-allowed; +} + + .button { background-color: #3E4245; border-radius: 5px; -- cgit v1.2.3