60 lines
833 B
CSS
60 lines
833 B
CSS
/* login nav css */
|
|
|
|
.header-nav {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
min-height: 92px;
|
|
background-color: #efefd0;
|
|
}
|
|
|
|
.navbar-brand {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
}
|
|
|
|
.navbar-brand > img {
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.navbar > .navbar-brand {
|
|
font-size: 30px;
|
|
font-family: 'Pacifico', cursive;
|
|
margin: 5px;
|
|
}
|
|
|
|
.navbar > .btn {
|
|
font-size: 20px;
|
|
color: #293241;
|
|
}
|
|
|
|
.login-part {
|
|
height: 50%;
|
|
}
|
|
|
|
.landing-Page-login-btn {
|
|
font-size: 20px;
|
|
color: #495871;
|
|
font-family: 'Lato', sans-serif;
|
|
}
|
|
|
|
.landing-Page-login-btn > .bi {
|
|
margin: 0px 10px 0px 2px;
|
|
}
|
|
|
|
.login-part .dropdown-menu {
|
|
color: #495871;
|
|
font-family: 'Lato', sans-serif;
|
|
}
|
|
|
|
.logout {
|
|
cursor: pointer;
|
|
}
|
|
|
|
@media only screen and (max-width: 450px) {
|
|
.navbar-logo-text {
|
|
display: none;
|
|
}
|
|
}
|