2024-04-05 00:10:30 -06:00
|
|
|
#navigation-bar-container {
|
2024-04-05 00:25:37 -06:00
|
|
|
background-color: hsl(0, 98%, 40%);
|
|
|
|
|
box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.4);
|
2024-04-08 00:05:39 -06:00
|
|
|
height: 50px;
|
|
|
|
|
|
|
|
|
|
display: flex;
|
2024-04-07 04:59:09 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sticky {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
z-index: 1000; /* Adjust as needed */
|
2024-04-08 00:05:39 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: 'Scottsdale-Italic';
|
|
|
|
|
src: url('../fonts/Scottsdale-Italic.ttf') format('truetype');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#logo {
|
|
|
|
|
color: white;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
font-family: 'Scottsdale-Italic';
|
|
|
|
|
font-size: 25px;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#logo:hover {
|
|
|
|
|
font-size: 30px;
|
|
|
|
|
}
|