Files
ScoreSpot/public/assets/css/navigation-bar/navigation-bar.css

68 lines
1.2 KiB
CSS
Raw Normal View History

2024-04-24 03:44:48 -06:00
.sticky {
position: fixed;
top: 0;
width: 100%;
z-index: 1000; /* Adjust as needed */
}
#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);
height: 50px;
display: flex;
}
#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 */
}
#logo:hover {
font-size: 30px;
}
#favorite-teams-container {
margin-right: 25px;
a {
text-decoration: none;
}
img {
width: 28px;
height: auto;
2024-04-24 00:11:19 -06:00
max-height: 30px;
margin: 0 4px;
cursor: pointer;
transition: width 0.3s ease; /* Adding transition for smooth effect */
}
img:hover {
width: 32px;
}
}
2024-04-24 03:44:48 -06:00
#user-profile-button {
width: 25px;
2024-04-11 00:00:31 -06:00
cursor: pointer;
transition: width 0.3s ease; /* Adding transition for smooth effect */
}
2024-04-24 03:44:48 -06:00
#user-profile-button:hover {
width: 30px;
}
2024-04-24 03:44:48 -06:00
/* Add logo font face */
@font-face {
font-family: 'Scottsdale-Italic';
src: url('../../fonts/Scottsdale-Italic.ttf') format('truetype');
}