diff options
author | Andrew Godwin | 2022-11-16 06:53:39 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-16 13:53:40 -0700 |
commit | 495e955378d62dc439c4c210785e5d401bc77f64 (patch) | |
tree | 859813b06314f387470295e752d1f1b3828830a7 /static | |
parent | 906ed2f27c9105dbd78f416930f1aa2b49497567 (diff) | |
download | takahe-495e955378d62dc439c4c210785e5d401bc77f64.tar.gz takahe-495e955378d62dc439c4c210785e5d401bc77f64.tar.bz2 takahe-495e955378d62dc439c4c210785e5d401bc77f64.zip |
Tag and visibility handling
Diffstat (limited to 'static')
-rw-r--r-- | static/css/style.css | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/static/css/style.css b/static/css/style.css index a7f3ef3..c791023 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -101,7 +101,7 @@ body { } main { - width: 850px; + width: 900px; margin: 20px auto; box-shadow: 0 0 50px rgba(0, 0, 0, 0.6); border-radius: 5px; @@ -520,6 +520,10 @@ h1.identity small { color: var(--color-text-duller); } +.post time i { + margin-right: 3px; +} + .post .summary { margin: 12px 0 4px 64px; padding: 3px 6px; @@ -583,3 +587,20 @@ h1.identity small { .boost-banner a { font-weight: bold; } + + + +@media (max-width: 920px) or (display-mode: standalone) { + + main { + width: 100%; + margin: 0; + box-shadow: none; + border-radius: 0; + } + + header .logo { + border-radius: 0; + } + +} |