diff options
author | Aki <please@ignore.pl> | 2024-08-28 22:08:34 +0200 |
---|---|---|
committer | Aki <please@ignore.pl> | 2024-08-28 22:08:34 +0200 |
commit | 0847c4f2eb78c6c31f63e0862a1385b20a659e6c (patch) | |
tree | df312cb2ce9d9deeb356494d5f95d850a4038de7 /style.css | |
parent | cce90246757b4567888de0889663e3e3c53dca40 (diff) | |
download | ignore.pl-0847c4f2eb78c6c31f63e0862a1385b20a659e6c.zip ignore.pl-0847c4f2eb78c6c31f63e0862a1385b20a659e6c.tar.gz ignore.pl-0847c4f2eb78c6c31f63e0862a1385b20a659e6c.tar.bz2 |
Restyled posts index
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 36 |
1 files changed, 21 insertions, 15 deletions
@@ -92,28 +92,34 @@ a:active:hover { flex-wrap: wrap; } -#profile-picture { - display: block; - margin: 1em 1em 1em 0; - max-height: 4em; -} - #introduction { flex: 1; } -#posts li { - margin-bottom: 0.2em; -} - -#posts time { - font-size: 80%; - color: #999; -} - video, audio { display: block; margin: 1em auto; max-width: 720px; width: 100%; } + +table.index { + border-collapse: collapse; + width: 100%; +} + +table.index td:first-child { + text-align: right; +} + +table.index td.sep { + min-width: 1em; + width: 1em; + text-align: center; + user-select: none; +} + +table.index td { + vertical-align: top; + padding-bottom: 0.3em; +} |