From a290e7800027c5a6fd9f91e456f7ecf9327f8e14 Mon Sep 17 00:00:00 2001 From: Julian Prieber <60265788+JulianPrieber@users.noreply.github.com> Date: Mon, 21 Mar 2022 23:11:49 +0100 Subject: [PATCH] Added footer / credit option Added a footer and a credit options. Both can be turned off in the config. --- .env | 2 + littlelink/css/animate.css | 65 ++++++++++++++++++++++- resources/views/layouts/footer.blade.php | 25 +++++++-- resources/views/layouts/sidebar.blade.php | 18 ++++++- storage/backups/default_settings | 2 + 5 files changed, 105 insertions(+), 7 deletions(-) diff --git a/.env b/.env index 256caa1..878566d 100644 --- a/.env +++ b/.env @@ -5,6 +5,8 @@ REGISTER_AUTH=verified #Internal notifications=Notify if update is available or and event is happening such as a poll about the future of this project. NOTIFY_EVENTS=true NOTIFY_UPDATES=true +DISPLAY_FOOTER=true +DISPLAY_CREDIT=true #App Settings=Changes settings regarding your LittleLink Custom installation. You probably only want to change the App Name setting. #=App_Name changes the displayed name for the App in the title, for example. diff --git a/littlelink/css/animate.css b/littlelink/css/animate.css index 70426ed..3a4d356 100644 --- a/littlelink/css/animate.css +++ b/littlelink/css/animate.css @@ -6,7 +6,7 @@ * Copyright (c) 2022 Animate.css */ -.button-entrance { + .button-entrance { animation-name: zoomIn; animation-duration: 1s; animation-fill-mode: both; @@ -80,3 +80,66 @@ min-width: 55px; height: auto; } + +.parent-footer { + margin: auto; + top: 35px; + position: relative; + right: 123px; +} +.image-footer1 { + position: relative; + width: 32px !important; + min-width:32px; +} + +.image-footer2 { + position: relative; + bottom: 7px; + right: 27px; + width: 12px !important; + min-width: 13px; + height: auto; +} + +.parent-footers { + margin: auto; + top: 39px; + position: relative; + right: 12px; +} +.image-footers1 { + position: relative; + width: 32px !important; + min-width:32px; +} + +.image-footers2 { + position: relative; + bottom: 0px; + right: 26px; + width: 12px !important; + min-width: 13px; + height: auto; +} + +.text-footers { + padding-left: 22px; +} + +.sections { + padding-left: 50px; +} + +@keyframes spin { + 100% {transform: rotate(1turn); } +} + +section:hover #footer_spin{ + animation-play-state: running; +} + +section #footer_spin{ + animation: spin 4s linear infinite; + animation-play-state: paused; +} \ No newline at end of file diff --git a/resources/views/layouts/footer.blade.php b/resources/views/layouts/footer.blade.php index 3b0f60a..4459e18 100755 --- a/resources/views/layouts/footer.blade.php +++ b/resources/views/layouts/footer.blade.php @@ -1,6 +1,21 @@ -
diff --git a/storage/backups/default_settings b/storage/backups/default_settings index 6b7e505..344e3cc 100644 --- a/storage/backups/default_settings +++ b/storage/backups/default_settings @@ -5,6 +5,8 @@ REGISTER_AUTH=verified #Internal notifications=Notify if update is available or and event is happening such as a poll about the future of this project. NOTIFY_EVENTS=true NOTIFY_UPDATES=true +DISPLAY_FOOTER=true +DISPLAY_CREDIT=true #App Settings=Changes settings regarding your LittleLink Custom installation. You probably only want to change the App Name setting. #=App_Name changes the displayed name for the App in the title, for example.