summaryrefslogtreecommitdiff
path: root/static/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/style.css')
-rw-r--r--static/style.css55
1 files changed, 55 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css
new file mode 100644
index 0000000..b2584d7
--- /dev/null
+++ b/static/style.css
@@ -0,0 +1,55 @@
+body {
+ font-family: "Arial", sans-serif;
+}
+
+#drop-zone {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: 500px;
+ max-width: 100%;
+ height: 200px;
+ padding: 1em;
+ border: 1px solid #cccccc;
+ border-radius: 4px;
+ color: slategray;
+ cursor: pointer;
+}
+
+#file-input {
+ display: none;
+}
+
+#preview {
+ display: flex;
+ flex-direction: column;
+ gap: 0.5em;
+ list-style: none;
+ padding: 0;
+}
+
+#preview li {
+ display: flex;
+ align-items: center;
+ gap: 0.5em;
+ margin: 0;
+ width: 100%;
+ height: 100px;
+}
+
+#preview img {
+ width: 100px;
+ height: 100px;
+ object-fit: cover;
+}
+
+.upload-progress {
+ border: 1px solid black;
+}
+
+.expander-hidden {
+ display: none;
+}
+.expander-toggle {
+ cursor: pointer;
+}