diff options
author | June McEnroe <june@causal.agency> | 2020-07-10 16:28:51 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-07-10 16:31:33 -0400 |
commit | f94b37baf4304b901c93b5fee076738946e1820f (patch) | |
tree | a0ef905cf38e4c962d6622872ef99d87c854a2cd /default.css | |
parent | Add IRC colors and implement nick coloring (diff) | |
download | scooper-f94b37baf4304b901c93b5fee076738946e1820f.tar.gz scooper-f94b37baf4304b901c93b5fee076738946e1820f.zip |
Add basic messages to table and attempt to style
Diffstat (limited to '')
-rw-r--r-- | default.css | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/default.css b/default.css index 40d9e88..ddd0982 100644 --- a/default.css +++ b/default.css @@ -36,6 +36,20 @@ nav form { margin-top: 1em; } +table { + border-collapse: collapse; +} +tr { + vertical-align: top; +} +tr td:not(:last-child) { + padding-right: 1ch; +} + +td.time { + white-space: nowrap; +} + td.nick { text-align: right; } |