diff options
Diffstat (limited to 'static/dd-upload.css')
-rw-r--r-- | static/dd-upload.css | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/static/dd-upload.css b/static/dd-upload.css new file mode 100644 index 0000000..39586eb --- /dev/null +++ b/static/dd-upload.css @@ -0,0 +1,17 @@ +/* (A) UPLOAD ZONE */
+/* Author: W.S. Toh */
+/* SPDX-License-Identifier: MIT */
+#upzone {
+ width: 300px;
+ height: 200px;
+ background: #cfd5ff;
+ padding: 10px;
+}
+#upzone.highlight {
+ background: #ff0;
+}
+
+/* (B) UPLOAD FORM */
+#upform {
+ display: none;
+}
|