-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
290 additions
and
303 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<link rel="apple-touch-icon" sizes="180x180" href="/images/favicon/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon/favicon-16x16.png"> | ||
<link rel="manifest" href="/images/favicon/site.webmanifest"> | ||
<link rel="mask-icon" href="/images/favicon/safari-pinned-tab.svg" color="#5bbad5"> | ||
<link rel="shortcut icon" href="/images/favicon/favicon.ico"> | ||
<meta name="msapplication-TileColor" content="#da532c"> | ||
<meta name="msapplication-config" content="/images/favicon/browserconfig.xml"> | ||
<meta name="theme-color" content="#ffffff"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
<footer> | ||
<p>Catalyst Voice © 2025</p> | ||
<footer class="footer"> | ||
<div class="footer-content"> | ||
<p class="copyright">© 2024 Project Catalyst. All rights reserved.</p> | ||
</div> | ||
</footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<!-- Main header --> | ||
<nav class="top-nav" id="mainNav"> | ||
<div class="nav-content"> | ||
<div class="logo"> | ||
<img src="/images/branding/logo.png" alt="Project Catalyst Logo" class="logo-image"> | ||
</div> | ||
</div> | ||
</nav> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
@use 'theme' as *; | ||
@use "sass:map"; | ||
|
||
.footer { | ||
width: 100%; | ||
padding: 1rem 0; | ||
border-top: 1px solid #EAECF0; | ||
margin-top: auto; | ||
color:white | ||
|
||
} | ||
|
||
.footer-content { | ||
margin: 0 auto; | ||
padding: 0 2rem; | ||
} | ||
|
||
.copyright { | ||
@include typography("body"); | ||
color: get-color("text-light"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
@import 'theme'; | ||
|
||
// Top Navigation | ||
.top-nav { | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
z-index: 100; | ||
background: rgba(white, 0.9); | ||
backdrop-filter: blur(8px); | ||
padding: map-get($spacing, sm) 0; | ||
} | ||
|
||
.nav-content { | ||
align-content: start; | ||
width: 100%; | ||
margin: 0 auto; | ||
padding: 0 map-get($spacing, lg); | ||
display: flex; | ||
justify-content: start; | ||
align-items: left; | ||
} | ||
|
||
.logo { | ||
display: flex; | ||
align-items: left; | ||
|
||
img { | ||
height: 40px; | ||
width: auto; | ||
} | ||
} |
Oops, something went wrong.