From 56bde40f6987d0d7251b14e7ae7f5b6e34dc982c Mon Sep 17 00:00:00 2001 From: root Date: Sat, 25 Mar 2023 12:15:07 +0100 Subject: [PATCH] =?UTF-8?q?Footer=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.dist.php | 5 ++++- index.php | 1 + themes/gideonstar/style.css | 12 ++++++++++++ 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/config.dist.php b/config.dist.php index 2cb72e6..9622c28 100644 --- a/config.dist.php +++ b/config.dist.php @@ -3,9 +3,12 @@ // Title $title = "imgpaste by gideonstar"; -// Displayed text +// Dropzone text $text = "Click or drop image here..."; +// Footer text +$footer = 'imgpaste by gideonstar'; + // Themes can be found in the themes directory $theme = "gideonstar"; diff --git a/index.php b/index.php index 90c2c93..0d863d9 100644 --- a/index.php +++ b/index.php @@ -20,6 +20,7 @@

+ diff --git a/themes/gideonstar/style.css b/themes/gideonstar/style.css index 67a4b4e..84247a0 100644 --- a/themes/gideonstar/style.css +++ b/themes/gideonstar/style.css @@ -46,3 +46,15 @@ body { outline: 2px dashed #d5d5d5; } +#footer { + position: absolute; + bottom: 15px; + right: 15px; + color: white; + font-size: .8em; +} + +a { + color: #ffb703; + text-decoration: none; +}