75 lines
1.5 KiB
CSS
75 lines
1.5 KiB
CSS
.admin-navbar-background {
|
|
/*border-top: 3px solid #04B2D9;*/
|
|
position: fixed;
|
|
z-index: 1;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: start;
|
|
align-items: stretch;
|
|
background-color: #02114A;
|
|
min-width: 170px;
|
|
border-right: solid 0.5px #d8d8d8;
|
|
padding: 0px 15px
|
|
}
|
|
.admin-navbar-image {
|
|
object-fit: cover;
|
|
width: 80%;
|
|
height: 130px;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.admin-navbar-elements-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: start;
|
|
align-items: center;
|
|
gap: 5px;
|
|
|
|
width: 100%;
|
|
}
|
|
.admin-navbar-element {
|
|
width: 100%;
|
|
height: 35px;
|
|
color: white;
|
|
|
|
text-align: center;
|
|
font-size: 16px;
|
|
font-family: Source Sans Pro;
|
|
font-weight: 500;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.admin-navbar-element:hover {
|
|
cursor: pointer;
|
|
background-color: #ffffff14;
|
|
border-radius: 3px;
|
|
transition-duration: 0.3s;
|
|
}
|
|
.admin-navbar-element-selected {
|
|
width: 100%;
|
|
height: 35px;
|
|
color: rgb(27, 27, 27);
|
|
background-color: white;
|
|
border-radius: 3px;
|
|
|
|
text-align: center;
|
|
font-size: 16px;
|
|
font-family: Source Sans Pro;
|
|
font-weight: 500;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.admin-navbar-element-selected { cursor: default; }
|
|
.admin-navbar-divider {
|
|
width: 100%;
|
|
height: 0.5px;
|
|
background-color: #d8d8d8;
|
|
} |