summaryrefslogtreecommitdiff
path: root/public/static
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-06-04 18:44:10 +0400
committerilotterytea <iltsu@alright.party>2025-06-04 18:44:10 +0400
commit8245832be8470f20091eb71946fdeff3cab79aa7 (patch)
treebe375483c1e81f0ad3e23f688efe88fea5544366 /public/static
parent27027f5b6a9ea2a4cb5f2324018be8ce0f22cc50 (diff)
feat: file page
Diffstat (limited to 'public/static')
-rw-r--r--public/static/img/brand/mini.webpbin0 -> 1922 bytes
-rw-r--r--public/static/style.css15
2 files changed, 15 insertions, 0 deletions
diff --git a/public/static/img/brand/mini.webp b/public/static/img/brand/mini.webp
new file mode 100644
index 0000000..2f6de74
--- /dev/null
+++ b/public/static/img/brand/mini.webp
Binary files differ
diff --git a/public/static/style.css b/public/static/style.css
index e0ae3e0..f22bac2 100644
--- a/public/static/style.css
+++ b/public/static/style.css
@@ -136,6 +136,13 @@ button[type=submit]:hover {
background: var(--box-content-background-2);
}
+/** FILES */
+.file-preview img,
+.file-preview video {
+ width: 100%;
+ max-height: 100%;
+}
+
/** SHORTCUTS */
.column {
display: flex;
@@ -163,10 +170,18 @@ button[type=submit]:hover {
justify-content: center;
}
+.justify-end {
+ justify-content: end;
+}
+
.align-center {
align-items: center;
}
+.align-bottom {
+ align-items: end;
+}
+
.pad-4 {
padding: 4px;
}