aboutsummaryrefslogtreecommitdiff
path: root/static/css/main.css
diff options
context:
space:
mode:
authorBobby <[email protected]>2025-07-18 17:07:23 +0530
committerBobby <[email protected]>2025-07-18 17:07:23 +0530
commitaa0405ee98c45a9bb25dd9959d899bbd56bc1b02 (patch)
treec6b75124708f3a3ab5fecbdb454eb5f530dd2ffa /static/css/main.css
parent821773b12c07a4bc23628e7d98ac4b34da1eb9e1 (diff)
downloadimageboard-aa0405ee98c45a9bb25dd9959d899bbd56bc1b02.tar.xz
imageboard-aa0405ee98c45a9bb25dd9959d899bbd56bc1b02.zip
favourite system and ∂etails on single page
Diffstat (limited to 'static/css/main.css')
-rw-r--r--static/css/main.css53
1 files changed, 53 insertions, 0 deletions
diff --git a/static/css/main.css b/static/css/main.css
index c6cb393..cdd39e5 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -845,6 +845,7 @@ footer::before {
#post-image {
display: block;
height: auto;
+ margin-bottom: 8px;
}
#post-image.fit-width {
@@ -867,4 +868,56 @@ footer::before {
width: auto;
height: auto;
max-width: none;
+}
+
+.post-details {
+ margin: 4px auto;
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+ gap: 16px;
+}
+
+.post-detail-item {
+ display: flex;
+ align-items: center;
+ gap: 4px;
+}
+
+.post-detail-label {
+ color: #cccccc;
+ white-space: nowrap;
+}
+
+.post-favourite-actions {
+ display: flex;
+ align-items: center;
+ gap: 4px;
+}
+
+.post-favourite-actions form {
+ margin: 0;
+ padding: 0;
+}
+
+.icon-button {
+ background: none;
+ border: none;
+ cursor: pointer;
+ padding: 2px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ color: #99ccff;
+ transition: color 0.3s ease;
+}
+
+.icon-button:hover {
+ color: #99ffcc;
+}
+
+.icon-button svg {
+ width: 16px;
+ height: 16px;
+ fill: currentColor;
} \ No newline at end of file