CrimsonREwind's picture
Upload 28 files
86112bd verified
raw
history blame contribute delete
793 Bytes
/* Bottom Navigation Bar */
.bottom-nav {
position: fixed;
bottom: 0;
left: 0;
width: 100vw;
background-color: #1e1e1e;
display: flex;
justify-content: space-around;
align-items: center;
padding: 10px 0;
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
z-index: 1000;
}
.bottom-nav-link {
display: flex;
flex-direction: column;
align-items: center;
text-decoration: none;
color: #e50914;
font-family: 'Bebas Neue', sans-serif;
transition: color 0.3s;
}
.bottom-nav-link:hover {
color: #b20710;
}
.nav-icon {
width: 24px;
height: 24px;
margin-bottom: 5px;
fill: currentColor;
}
.bottom-nav-link span {
font-size: 12px;
}
@media (min-width: 768px) {
.bottom-nav {
display: none;
}
}