2024-04-09 23:49:45 -06:00
|
|
|
/* Add logo font face */
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: 'Scottsdale-Italic';
|
|
|
|
|
src: url('../fonts/Scottsdale-Italic.ttf') format('truetype');
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-10 02:46:50 -06:00
|
|
|
.sticky {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
z-index: 1000; /* Adjust as needed */
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
2024-04-08 00:05:39 -06:00
|
|
|
#logo {
|
|
|
|
|
color: white;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
font-family: 'Scottsdale-Italic';
|
|
|
|
|
font-size: 25px;
|
|
|
|
|
margin-right: 10px;
|
2024-04-10 02:17:56 -06:00
|
|
|
|
|
|
|
|
transition: font-size 0.3s ease; /* Adding transition for smooth effect */
|
2024-04-08 00:05:39 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#logo:hover {
|
|
|
|
|
font-size: 30px;
|
|
|
|
|
}
|
2024-04-10 00:10:49 -06:00
|
|
|
|
2024-04-23 21:03:56 -06:00
|
|
|
#favorite-teams-container {
|
|
|
|
|
margin-right: 25px;
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
width: 28px;
|
|
|
|
|
height: auto;
|
|
|
|
|
margin: 0 4px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
transition: width 0.3s ease; /* Adding transition for smooth effect */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
img:hover {
|
|
|
|
|
width: 32px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-10 02:16:31 -06:00
|
|
|
#user {
|
|
|
|
|
width: 25px;
|
2024-04-11 00:00:31 -06:00
|
|
|
cursor: pointer;
|
2024-04-10 02:16:31 -06:00
|
|
|
transition: width 0.3s ease; /* Adding transition for smooth effect */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#user:hover {
|
|
|
|
|
width: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2024-04-10 00:10:49 -06:00
|
|
|
#line {
|
|
|
|
|
height: 100%; /* spans the entire height of the navigation bar */
|
|
|
|
|
width: 10px;
|
|
|
|
|
background-color: white; /* makes the line white */
|
|
|
|
|
transform: skewx(-20deg); /* rotates the line by 20 degrees */
|
|
|
|
|
transform-origin: top left; /* sets the rotation origin to top left */
|
|
|
|
|
margin-left: 10px; /* Add margin to separate the line from the logo */
|
|
|
|
|
}
|
|
|
|
|
|