remax-frontend-rs/css/navbar.css

161 lines
3.0 KiB
CSS
Raw Permalink Normal View History

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