jl-frontend/css/navbar.css

165 lines
3.1 KiB
CSS
Raw Normal View History

2023-03-15 13:20:17 +00:00
/* Mobile View */
.navbar-background {
border-top: 3px solid #04B2D9;
2023-03-15 13:20:17 +00:00
position: fixed;
2023-03-25 17:12:51 +00:00
z-index: 1;
2023-03-15 13:20:17 +00:00
width: 100%;
display: flex;
flex-direction: row;
justify-content: end;
align-items: center;
align-items: stretch;
background-color: #252631;
min-height: 74px;
}
.navbar-container {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: stretch;
flex-grow: 1;
padding: 15px;
}
.navbar-hamburger {
font-size: 20pt;
color: white;
display: flex;
justify-content: center;
align-items: center;
margin-top: 5px;
max-height: 35px;
min-width: 30px;
padding: 15px;
}
.navbar-hamburger:hover {
background-color: #ffffff14;
font-size: 22pt;
font-weight: bold;
border-radius: 3px;
transition-duration: 0.3s;
cursor: pointer;
}
2023-03-25 17:12:51 +00:00
.navbar-closed {
2023-03-15 13:20:17 +00:00
display: flex;
flex-direction: column;
justify-content: flex-start;
margin-top: 10px;
display: none;
}
.navbar-open {
display: flex;
flex-direction: column;
justify-content: flex-start;
margin-top: 10px;
}
.navbar-item {
color: white;
font-size: 12pt;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
font-family: Source Sans Pro;
}
.navbar-item:hover {
background-color: #ffffff14;
font-size: 13pt;
font-weight: bold;
border-radius: 3px;
transition-duration: 0.3s;
cursor: pointer;
}
.navbar-brand-container {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
gap: 10px;
max-width: 350px;
2023-03-15 13:20:17 +00:00
}
.navbar-brand-container:hover {
cursor: pointer;
}
.navbar-title {
color: white;
2023-03-25 00:59:56 +00:00
font-size: 16pt;
font-weight: 100;
font-family: 'Gill Sans';
2023-03-15 13:20:17 +00:00
}
.navbar-image {
max-width: 50px;
max-height: 50px;
}
/* Desktop view */
@media only screen and (min-width: 850px) {
.navbar-container {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: stretch;
}
.navbar {
display: flex;
flex-direction: row;
justify-content: flex-end;
flex-grow: 1;
}
.navbar-closed {
display: flex;
flex-direction: row;
justify-content: flex-end;
flex-grow: 1;
margin-top: 0px;
}
.navbar-open {
display: flex;
flex-direction: row;
justify-content: flex-end;
flex-grow: 1;
margin-top: 0px;
}
.navbar-item {
color: white;
font-size: 12pt;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
font-family: Source Sans Pro;
}
.navbar-item:hover {
background-color: #ffffff14;
font-size: 13pt;
font-weight: bold;
border-radius: 3px;
transition-duration: 0.3s;
cursor: pointer;
}
.navbar-title {
color: white;
font-size: 23pt;
font-family: Sacramento;
}
.navbar-hamburger {
display: none;
}
}