Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/pi-hole/pi-hole.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryubiuser <ckoenig@posteo.de>2022-07-29 16:11:09 +0300
committerAdam Warner <me@adamwarner.co.uk>2022-08-08 19:21:29 +0300
commitc67f313ee83996d8c8fe925d7e781deb392db7e3 (patch)
tree81e6541342c259657b06d2668199a56b3641f2aa
parent49a9f6f2dbb61cfe9034c27f0ee239b69c1334d7 (diff)
Apply reviewers suggestion for inline CSS
Co-authored-by: RD WebDesign <github@rdwebdesign.com.br> Signed-off-by: yubiuser <ckoenig@posteo.de>
-rw-r--r--advanced/index.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/advanced/index.php b/advanced/index.php
index 675b5005..350eb602 100644
--- a/advanced/index.php
+++ b/advanced/index.php
@@ -52,12 +52,12 @@ if ($serverName === "pi.hole"
<link rel='shortcut icon' href='/admin/img/favicons/favicon.ico' type='image/x-icon'>
<style>
html, body { height: 100% }
- body { font: 13pt "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif; }
- body { margin: 0; }
+ body { margin: 0; font: 13pt "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif; }
+ body { background: #222; color: rgba(255, 255, 255, 0.7); text-align: center; }
p { margin: 0; }
a { color: #3c8dbc; text-decoration: none; }
a:hover { color: #72afda; text-decoration: underline; }
- #splashpage { background: #222; color: rgba(255, 255, 255, 0.7); text-align: center; display: flex; align-items: center; justify-content: center; }
+ #splashpage { display: flex; align-items: center; justify-content: center; }
#splashpage img { margin: 5px; width: 256px; }
#splashpage b { color: inherit; }
</style>