diff options
author | June McEnroe <june@causal.agency> | 2020-07-10 14:54:45 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-07-10 14:54:45 -0400 |
commit | 3926094bc216277ff6c58e6e9efba64fc7af91da (patch) | |
tree | 55362740094489c3e59fbc125ed181dd18cf0077 /default.css | |
parent | Add -l and -r options (diff) | |
download | scooper-3926094bc216277ff6c58e6e9efba64fc7af91da.tar.gz scooper-3926094bc216277ff6c58e6e9efba64fc7af91da.zip |
Implement partial table output of events
This should work for both events and search pages.
Diffstat (limited to '')
-rw-r--r-- | default.css | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/default.css b/default.css index 449132f..40d9e88 100644 --- a/default.css +++ b/default.css @@ -36,7 +36,24 @@ nav form { margin-top: 1em; } +td.nick { + text-align: right; +} +tr.privmsg td.nick span::before { + content: '<'; +} +tr.privmsg td.nick span::after { + content: '>'; +} +tr.action td.nick span::before { + content: '* '; +} +tr.notice td.nick span::before, tr.notice td.nick span::after { + content: '-'; +} + footer { + margin-top: 1em; display: flex; flex-wrap: wrap; justify-content: space-between; |