summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar steering72532026-07-10 15:24:24 +0000
committerGravatar steering72532026-07-10 15:24:24 +0000
commit53de76efdb5727ffae59a405bfb20164b02508b3 (patch)
tree166617e6a1f7503fd89b0375f9128b6b682c4adc
parentindex - remove accept, why did i even put it there (diff)
change button styling HEAD main
-rw-r--r--index.html3
-rw-r--r--static/style.css14
2 files changed, 7 insertions, 10 deletions
diff --git a/index.html b/index.html
index 47115ad..9600afa 100644
--- a/index.html
+++ b/index.html
@@ -8,6 +8,7 @@
</head>
<body>
<form action="upload.php" method="POST" enctype="multipart/form-data">
+<h1>(g.)hostfil.es</h1>
<label id="drop-zone">
Drop files on the page, or paste them, or click here to upload.
@@ -69,7 +70,7 @@ curl -Ffile[]=@file1.jpg -Ffile[]=@file2.jpg https://www.hostfil.es
</dl>
</details>
-<img src="/static/image.png" alt="A ghost icon">
+<img src="/static/image.png" alt="A ghost clipart. Boo!" title="Boooooooooooo!~">
</form>
</body>
diff --git a/static/style.css b/static/style.css
index 0afbc61..730059f 100644
--- a/static/style.css
+++ b/static/style.css
@@ -3,17 +3,13 @@ body {
}
#drop-zone {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 500px;
- max-width: 100%;
- height: 200px;
+ display: inline-block;
+ margin: 1em;
padding: 1em;
- border: 1px solid #cccccc;
- border-radius: 4px;
- color: slategray;
+ border: 1px solid;
+ border-radius: 1ex;
cursor: pointer;
+ background-color: #ccc;
}
#file-input {