summaryrefslogtreecommitdiffstats
path: root/static
diff options
context:
space:
mode:
authorAndrew Godwin2022-11-16 06:53:39 -0700
committerAndrew Godwin2022-11-16 13:53:40 -0700
commit495e955378d62dc439c4c210785e5d401bc77f64 (patch)
tree859813b06314f387470295e752d1f1b3828830a7 /static
parent906ed2f27c9105dbd78f416930f1aa2b49497567 (diff)
downloadtakahe-495e955378d62dc439c4c210785e5d401bc77f64.tar.gz
takahe-495e955378d62dc439c4c210785e5d401bc77f64.tar.bz2
takahe-495e955378d62dc439c4c210785e5d401bc77f64.zip
Tag and visibility handling
Diffstat (limited to 'static')
-rw-r--r--static/css/style.css23
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;
+ }
+
+}