diff options
author | Akshay <[email protected]> | 2024-08-31 08:25:09 +0100 |
---|---|---|
committer | Akshay <[email protected]> | 2024-08-31 08:28:11 +0100 |
commit | 55ef1a63136c2ff0ec808ba44160f5503cc4416b (patch) | |
tree | b14d287ca284963d7469c48957380778da7182b2 /src/public/styles.css | |
parent | 17cb2b62fd8f31f49347ae5818acfc8c589fdbea (diff) |
add markdown rendering, lay out localStorage subscriptions
Diffstat (limited to 'src/public/styles.css')
-rw-r--r-- | src/public/styles.css | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/src/public/styles.css b/src/public/styles.css index c366e46..8add1a5 100644 --- a/src/public/styles.css +++ b/src/public/styles.css | |||
@@ -24,7 +24,7 @@ main { | |||
24 | } | 24 | } |
25 | 25 | ||
26 | .info-item { | 26 | .info-item { |
27 | margin-right: 10px; | 27 | margin-right: 14px; |
28 | } | 28 | } |
29 | 29 | ||
30 | @media (min-width: 768px) { | 30 | @media (min-width: 768px) { |
@@ -58,6 +58,10 @@ main { | |||
58 | box-sizing: border-box; | 58 | box-sizing: border-box; |
59 | } | 59 | } |
60 | 60 | ||
61 | .comment { | ||
62 | padding: 0px 0px 0px 24px; | ||
63 | } | ||
64 | |||
61 | .more { | 65 | .more { |
62 | margin-bottom: 0px; | 66 | margin-bottom: 0px; |
63 | font-size: 0.7rem; | 67 | font-size: 0.7rem; |
@@ -68,7 +72,7 @@ main { | |||
68 | border-left: none; | 72 | border-left: none; |
69 | padding-left: 0; | 73 | padding-left: 0; |
70 | margin: 0; | 74 | margin: 0; |
71 | margin-top: 12px; | 75 | margin-top: 40px; |
72 | } | 76 | } |
73 | 77 | ||
74 | .post-container { | 78 | .post-container { |
@@ -88,6 +92,8 @@ main { | |||
88 | } | 92 | } |
89 | 93 | ||
90 | .post-media { | 94 | .post-media { |
95 | display: block; | ||
96 | margin: 0 auto; | ||
91 | max-width: 100%; | 97 | max-width: 100%; |
92 | } | 98 | } |
93 | 99 | ||
@@ -100,3 +106,10 @@ main { | |||
100 | hr { | 106 | hr { |
101 | border 1px solid #000; | 107 | border 1px solid #000; |
102 | } | 108 | } |
109 | |||
110 | blockquote { | ||
111 | margin: 0px; | ||
112 | padding-left: 10px; | ||
113 | border-left: 4px solid green; | ||
114 | color: green; | ||
115 | } | ||