aboutsummaryrefslogtreecommitdiff
path: root/static/css
diff options
context:
space:
mode:
authorBobby <[email protected]>2022-12-31 11:17:59 -0500
committerBobby <[email protected]>2022-12-31 11:17:59 -0500
commitf7f323657ac2b52ce5a6b3d49ca6a0cdb3320938 (patch)
tree34c54db15f09b99b573488c74271e345b5de740b /static/css
parent5c5493387bbcd6d0b025d395df77ae48af65508e (diff)
downloadthatcomputerscientist-f7f323657ac2b52ce5a6b3d49ca6a0cdb3320938.tar.xz
thatcomputerscientist-f7f323657ac2b52ce5a6b3d49ca6a0cdb3320938.zip
Some fixes and removed over engineered things, KISS baby
Diffstat (limited to 'static/css')
-rw-r--r--static/css/main.css53
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;