This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository www.

View the commit online.

commit 8309ba52c6bac71b292d6acea4eb175b24523d24
Author: Carsten Haitzler (Rasterman) <[email protected]>
AuthorDate: Thu Jun 18 07:45:26 2026 +0100

    make top left logo glow if its the start page
---
 public_html/site/site.php |  2 +-
 public_html/style.css     | 15 +++++++++++++++
 2 files changed, 16 insertions(+), 1 deletion(-)

diff --git a/public_html/site/site.php b/public_html/site/site.php
index 73033159..24ded1f0 100644
--- a/public_html/site/site.php
+++ b/public_html/site/site.php
@@ -46,7 +46,7 @@
   <div class="content">
    <header>
     <div class="head-wrap flexy">
-     <a class="brand" href="" aria-label="Enlightenment home">
+     <a class="brand<?php if ($safe_page == "start") print(" brand-active"); ?>" href="" aria-label="Enlightenment home">
       <img class="head-icon" src="" alt="">
       <span class="brand-name">Enlightenment</span>
      </a>
diff --git a/public_html/style.css b/public_html/style.css
index a02a0180..bdbdf13a 100644
--- a/public_html/style.css
+++ b/public_html/style.css
@@ -111,6 +111,21 @@ header {
  text-transform: uppercase;
 }
 
+.brand-active .head-icon {
+ filter:
+  drop-shadow(0 0 6px rgba(255, 255, 255, 0.78))
+  drop-shadow(0 0 18px rgba(255, 255, 255, 0.50))
+  drop-shadow(0 0 42px rgba(255, 255, 255, 0.30));
+}
+
+.brand-active .brand-name {
+ color: var(--accent);
+ text-shadow:
+  0 0 6px rgba(255, 255, 255, 0.78),
+  0 0 18px rgba(255, 255, 255, 0.50),
+  0 0 42px rgba(255, 255, 255, 0.30);
+}
+
 .head-menu {
  flex: 1 1 520px;
  display: flex;

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to