🚀 Simple Integration Test
+Simple Integration Test
This page demonstrates the most basic integration of the OpenNetwork Banner.
Just include the script and the banner automatically appears!
Domain detected: Loading...
diff --git a/styles/community.css b/styles/community.css index bc30497..1e317d8 100644 --- a/styles/community.css +++ b/styles/community.css @@ -1,19 +1,19 @@ /* ===== COMMUNITY SPECIFIC STYLES ===== */ -/* Import Hack Club gradient variables */ +/* Import Professional Color Variables */ :root { - --gradient-electric: linear-gradient(135deg, #7C3AED 0%, #06B6D4 100%); - --gradient-sunset: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%); - --gradient-cosmic: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%); - --gradient-neon: linear-gradient(135deg, #10B981 0%, #06B6D4 100%); - --font-display: 'Kanit', sans-serif; - --font-mono: 'Space Mono', monospace; + --gradient-electric: #1A73E8; + --gradient-sunset: #1A73E8; + --gradient-cosmic: #1A73E8; + --gradient-neon: #1A73E8; + --font-display: 'Google Sans', sans-serif; + --font-mono: 'Google Sans', sans-serif; } /* Community Layout */ .community-container { padding: 24px; - font-family: 'Space Grotesk', -apple-system, sans-serif; + font-family: 'Google Sans', -apple-system, sans-serif; } .community-layout { diff --git a/styles/main.css b/styles/main.css index b3842dd..24eb7de 100644 --- a/styles/main.css +++ b/styles/main.css @@ -6,39 +6,39 @@ } :root { - /* Color Palette */ - --primary-color: #22ff00; - --primary-dark: #004499; - --primary-light: #000000; - --secondary-color: #ff6b35; - --secondary-dark: #e55a2b; - --accent-color: #00d4aa; - --accent-dark: #00b894; + /* Professional Color Palette */ + --primary-color: #1A73E8; + --primary-dark: #1557B0; + --primary-light: #4285F4; + --secondary-color: #000000; + --secondary-dark: #000000; + --accent-color: #DC3545; + --accent-dark: #C82333; /* Neutral Colors */ --white: #ffffff; - --gray-50: #f8fafc; - --gray-100: #f1f5f9; - --gray-200: #e2e8f0; - --gray-300: #cbd5e1; - --gray-400: #94a3b8; - --gray-500: #64748b; - --gray-600: #475569; - --gray-700: #334155; - --gray-800: #1e293b; - --gray-900: #0f172a; + --gray-50: #f8f9fa; + --gray-100: #e9ecef; + --gray-200: #dee2e6; + --gray-300: #ced4da; + --gray-400: #adb5bd; + --gray-500: #6c757d; + --gray-600: #495057; + --gray-700: #343a40; + --gray-800: #212529; + --gray-900: #000000; --black: #000000; /* Background Colors */ - --bg-primary: #0a0a0f; - --bg-secondary: #1a1a2e; - --bg-tertiary: #16213e; - --bg-glass: rgba(255, 255, 255, 0.05); - --bg-glass-hover: rgba(255, 255, 255, 0.1); + --bg-primary: #ffffff; + --bg-secondary: #f8f9fa; + --bg-tertiary: #e9ecef; + --bg-glass: rgba(255, 255, 255, 0.95); + --bg-glass-hover: rgba(255, 255, 255, 1); /* Typography */ - --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; - --font-mono: 'Space Mono', 'Fira Code', 'Monaco', 'Consolas', monospace; + --font-primary: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; + --font-mono: 'Google Sans', 'Roboto Mono', monospace; /* Font Weights */ --font-light: 300; diff --git a/test-community.html b/test-community.html index 5984478..d3f0dae 100644 --- a/test-community.html +++ b/test-community.html @@ -83,7 +83,7 @@🚀 OpenRockets Community System Test
+OpenRockets Community System Test
This page tests all the community features to identify what's working and what needs to be fixed.
From b45cbbf08ee74963a60f29a0c5b30989b9f4161b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 18 Jan 2026 00:33:40 +0000 Subject: [PATCH 4/4] Update remaining CSS files to use Google Sans font Co-authored-by: NekshaDeSilva <102156620+NekshaDeSilva@users.noreply.github.com> --- styles/community.css | 2 +- styles/dashboard.css | 4 ++-- styles/lms-main.css | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/styles/community.css b/styles/community.css index 1e317d8..9f0923f 100644 --- a/styles/community.css +++ b/styles/community.css @@ -142,7 +142,7 @@ text-align: left; cursor: pointer; font-size: 1rem; - font-family: 'Space Grotesk', sans-serif; + font-family: 'Google Sans', sans-serif; transition: all 0.3s ease; } diff --git a/styles/dashboard.css b/styles/dashboard.css index 3089d63..0c85e9c 100644 --- a/styles/dashboard.css +++ b/styles/dashboard.css @@ -24,8 +24,8 @@ --gradient-primary: linear-gradient(135deg, var(--accent-primary), #7b68ee); /* Fonts */ - --font-primary: 'Inter', system-ui, sans-serif; - --font-mono: 'Space Mono', monospace; + --font-primary: 'Google Sans', system-ui, sans-serif; + --font-mono: 'Google Sans', monospace; /* Spacing */ --sidebar-width: 280px; diff --git a/styles/lms-main.css b/styles/lms-main.css index febf98c..cdf35a8 100644 --- a/styles/lms-main.css +++ b/styles/lms-main.css @@ -32,8 +32,8 @@ --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5); /* Fonts */ - --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; - --font-mono: 'Space Mono', 'Fira Code', monospace; + --font-primary: 'Google Sans', -apple-system, BlinkMacSystemFont, sans-serif; + --font-mono: 'Google Sans', 'Fira Code', monospace; } /* ===== RESET & BASE STYLES ===== */