Files
doneit-web/src/app/shared/header/header.page.scss
T
2021-05-03 13:08:57 +01:00

67 lines
918 B
SCSS

@import '~src/function.scss';
.div-top-header{
margin: 0 em(20px);
// background-color: #0782c9;
padding-top: em(15px);
border: 0!important;
}
.div-logo{
background: transparent;
width: em(140px);
justify-content: center;
display: flex;
}
.div-logo img{
width: 100%;
margin: 0px auto;
}
.desktop{
display: none;
}
@media only screen and (min-width: 1366px) {
.mobile{
display: none !important;
}
.desktop{
display: block;
}
}
.tab{
height: 65px;
cursor: pointer;
user-select: none;
}
.active{
border-top: 7px solid white;
}
.search-input-container{
background-color: white;
border-radius: 27.5px;
border: solid 1px #ebebeb;
.icon{
color: #797979;
width: 45px;
height: 45px;
display: flex;
justify-content: center;
font-size: 25px;
align-items: center;
}
.input-text{
width: 100%;
}
.icon-z{
width: 20px;
}
}