diff --git a/custom/public/css/oribi.css b/custom/public/assets/css/oribi.css similarity index 71% rename from custom/public/css/oribi.css rename to custom/public/assets/css/oribi.css index 41c2d75..fa4f19c 100644 --- a/custom/public/css/oribi.css +++ b/custom/public/assets/css/oribi.css @@ -1,19 +1,39 @@ :root { - --custom-primary: #D04000; /* Approximate logo color */ + --custom-primary: #D04000; + /* Approximate logo color */ --custom-bg: #1a1a1a; --custom-text: #f0f0f0; --custom-card-bg: #2d2d2d; } -/* Global modifications if needed, or specific to home */ -.page-content.home { - background-color: var(--custom-bg); +/* Global modifications */ +body { + background-color: var(--custom-bg) !important; + color: var(--custom-text) !important; +} + +.brand-text { color: var(--custom-text); - min-height: calc(100vh - 110px); /* Adjust for header/footer */ + font-size: 1.25rem; +} + +footer { + background-color: var(--custom-bg) !important; + border-top: 1px solid #333; + color: #888; +} + +/* Specific to home */ +.page-content.home { + background-color: transparent; + /* Let body background show */ + /* Remove min-height calculation as body is covered */ display: flex; align-items: center; justify-content: center; background-image: radial-gradient(circle at top right, #2a1a10 0%, var(--custom-bg) 40%); + min-height: 80vh; + /* Minimum height for centering */ } .home-container { @@ -35,6 +55,7 @@ margin-bottom: 0.5rem; background: linear-gradient(135deg, #fff, #ccc); -webkit-background-clip: text; + background-clip: text; -webkit-text-fill-color: transparent; } @@ -67,7 +88,7 @@ .action-card:hover { transform: translateY(-5px); - box-shadow: 0 10px 20px rgba(0,0,0,0.3); + box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); border-color: var(--custom-primary); color: var(--custom-text); } @@ -81,4 +102,4 @@ .action-card h3 { margin: 0; font-weight: 600; -} +} \ No newline at end of file diff --git a/custom/templates/base/head_navbar.tmpl b/custom/templates/base/head_navbar.tmpl new file mode 100644 index 0000000..3382203 --- /dev/null +++ b/custom/templates/base/head_navbar.tmpl @@ -0,0 +1,182 @@ + diff --git a/custom/templates/custom/header.tmpl b/custom/templates/custom/header.tmpl index 9d40bf1..7d0bc09 100644 --- a/custom/templates/custom/header.tmpl +++ b/custom/templates/custom/header.tmpl @@ -1 +1 @@ - + diff --git a/custom/templates/home.tmpl b/custom/templates/home.tmpl index ef5469f..d030ca3 100644 --- a/custom/templates/home.tmpl +++ b/custom/templates/home.tmpl @@ -1,20 +1,10 @@ {{template "base/head" .}}