From 3faeb3cf79f9ef1063a952144b4ae141aac8bffd Mon Sep 17 00:00:00 2001 From: Edmund Tan Date: Wed, 23 Jul 2025 17:39:54 +0800 Subject: [PATCH] added logo theme to zitinexus --- UI/public/assets/css/style.css | 28 ++++++++++++++++++++++++++++ UI/public/dashboard.php | 5 ++++- UI/public/index.php | 1 + UI/public/setup.php | 1 + 4 files changed, 34 insertions(+), 1 deletion(-) diff --git a/UI/public/assets/css/style.css b/UI/public/assets/css/style.css index 61226a0..a633b0d 100644 --- a/UI/public/assets/css/style.css +++ b/UI/public/assets/css/style.css @@ -204,10 +204,38 @@ body { margin: 0 auto; } +.header-brand { + display: flex; + align-items: center; + gap: 1rem; +} + +.logo { + width: 40px; + height: 40px; + background-color: var(--primary-color); + border-radius: 8px; + display: flex; + align-items: center; + justify-content: center; + color: white; + font-size: 1.25rem; + font-weight: 700; + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; + box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2); + transition: all 0.2s ease; +} + +.logo:hover { + transform: translateY(-1px); + box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3); +} + .header-title { font-size: 1.5rem; font-weight: 700; color: var(--text-primary); + margin: 0; } .header-actions { diff --git a/UI/public/dashboard.php b/UI/public/dashboard.php index 4a7a27b..0c0c662 100644 --- a/UI/public/dashboard.php +++ b/UI/public/dashboard.php @@ -97,7 +97,10 @@ $systemStatus = $enrollmentManager->getSystemStatus();
-

+
+ +

+