diff options
Diffstat (limited to 'static/css')
| -rw-r--r-- | static/css/main.css | 53 |
1 files changed, 53 insertions, 0 deletions
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; |
