From c5c3f96196d25673826edf6629be1658707ae43b Mon Sep 17 00:00:00 2001 From: Anthony Atkinson Date: Fri, 13 Aug 2021 16:24:16 -0400 Subject: [PATCH] Markup improvements and styling addition --- README.md | 8 +++++ index.php | 102 ++++++++++++++++++++++++++++++++++++----------------- styles.css | 14 ++++++++ 3 files changed, 91 insertions(+), 33 deletions(-) create mode 100644 styles.css diff --git a/README.md b/README.md index 33fc1a3..acfebe4 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,14 @@ Pretty straight forward, I use something like this: ``` +# Styling + +Base styles can be found in styles.css and can be modified +or added to according to your preference. Each element on +the page has been coded such that you can create a CSS +selector for anything that you should want to style, or +you can add classes to the existing markup. + # Purging Old Files To check for any files that exceed their max age and delete them, you need to call index.php with the argument "purge" ```bash diff --git a/index.php b/index.php index b436f2f..9308a2a 100755 --- a/index.php +++ b/index.php @@ -312,60 +312,96 @@ function print_index() echo << + + Filehost + + -
- === How To Upload ===
-You can upload files to this site via a simple HTTP POST, e.g. using curl:
+
+
+

Upload via Code or App

+

+ You can upload files to this site via a simple HTTP POST, e.g. using curl: +

 curl -F "file=@/path/to/your/file.jpg" $url
+        
+

-Or if you want to pipe to curl *and* have a file extension, add a "filename": +

+ Or if you want to pipe to curl *and* have a file extension, add a "filename": +

 echo "hello" | curl -F "file=@-;filename=.txt" $url
+        
+

-On Windows, you can use ShareX and import this custom uploader. -On Android, you can use an app called Hupl with this uploader. +

+ On Windows, you can use ShareX and import this custom uploader. +

+

+ On Android, you can use an app called Hupl with this uploader. +

+
+
+

Browser Upload

+

+ Simply choose a file and click "Upload".
+ (Hint: If you're lucky, your browser may support drag-and-drop onto the file + selection input.) +

+
+ + + +
+
-Or simply choose a file and click "Upload" below: -(Hint: If you're lucky, your browser may support drag-and-drop onto the file -selection input.) -
-
- - - -
-
+
+

Additional Details

+

File Sizes, Etc.

+

+ The maximum allowed file size is $MAX_FILESIZE MiB. +

- === File Sizes etc. === -The maximum allowed file size is $MAX_FILESIZE MiB. +

+ Files are kept for a minimum of $MIN_FILEAGE, and a maximum of $MAX_FILEAGE Days. +

-Files are kept for a minimum of $MIN_FILEAGE, and a maximum of $MAX_FILEAGE Days. - -How long a file is kept, depends on its size. Larger files are deleted earlier -than small ones. This relation is non-linear and skewed in favour of small -files. - -The exact formula for determining the maximum age for a file is: +

+ How long a file is kept, depends on its size. Larger files are deleted earlier + than small ones. This relation is non-linear and skewed in favour of small + files. +

+

+ The exact formula for determining the maximum age for a file is: +

 MIN_AGE + (MAX_AGE - MIN_AGE) * (1-(FILE_SIZE/MAX_SIZE))^$DECAY_EXP
+        
+

+

Source

+

+ The PHP script used to provide this service is open source and available on + GitHub +

+
- === Source === -The PHP script used to provide this service is open source and available on -GitHub +
+

Contact

+

+ If you want to report abuse of this service, or have any other inquiries, + please write an email to $ADMIN_EMAIL. +

+
- - === Contact === -If you want to report abuse of this service, or have any other inquiries, -please write an email to $ADMIN_EMAIL -
EOT; diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..ee49f16 --- /dev/null +++ b/styles.css @@ -0,0 +1,14 @@ +/* Place any CSS styles here. */ + +body { + font-family: sans-serif; +} + +pre { + font-family: monospace; + padding: 1rem; + background-color: #dfdfdf; + border: 1px solid #aaa; + border-radius: 10px; + line-height: 1em; +} \ No newline at end of file