Files
doneit-web/src/app/shared/header/header.page.scss
T

122 lines
1.8 KiB
SCSS
Raw Normal View History

@import '~src/function.scss';
.div-top-header{
2021-03-01 15:45:30 +01:00
margin: 0 em(20px);
2021-04-23 10:35:53 +01:00
// background-color: #0782c9;
//padding-top: em(15px);
border: 0!important;
2021-03-02 14:46:38 +01:00
}
2021-03-02 14:46:38 +01:00
.div-logo{
background: transparent;
width: em(140px);
justify-content: center;
display: flex;
}
.div-logo img{
width: 100%;
margin: 0px auto;
2021-03-01 15:45:30 +01:00
}
2021-07-29 15:51:42 +01:00
.header-btns{
justify-content: center;
align-items: center;
}
.div-profile{
width: 90px;
height: fit-content;
font-size: 45px;
justify-content: flex-end;
display: flex;
background-color: transparent;
justify-content: center;
align-items: center;
overflow: auto;
.icon{
position: relative;
border: none !important;
}
2021-08-19 18:28:00 +01:00
.icon-badge {
background-color: red;
font-size: 12px;
color: white;
text-align: center;
width:20px;
height:20px;
border-radius: 35%;
position: absolute; /* changed */
top: 5px; /* changed */
right: 27px; /* changed */
}
2021-07-29 15:51:42 +01:00
.profile-text{
font-size: 20px;
font-weight: 300;
width: fit-content;
position: absolute;
2021-10-27 15:10:55 +01:00
color: var(--profile-text-color);
2021-07-29 15:51:42 +01:00
}
}
2021-08-30 09:05:57 +01:00
.main-tab{
2021-08-30 13:40:26 +01:00
//border: 1px solid red;
2021-08-30 09:05:57 +01:00
}
2021-07-29 15:51:42 +01:00
2021-03-02 14:46:38 +01:00
2021-03-01 15:45:30 +01:00
.desktop{
display: none;
}
2021-03-02 14:46:38 +01:00
@media only screen and (min-width: 1366px) {
2021-03-01 15:45:30 +01:00
.mobile{
display: none !important;
}
.desktop{
display: block;
}
2021-03-02 14:46:38 +01:00
}
.tab{
height: 65px;
2021-05-03 13:08:57 +01:00
cursor: pointer;
user-select: none;
2021-03-02 14:46:38 +01:00
}
2021-08-30 13:40:26 +01:00
.tab:hover{
2021-10-21 14:15:50 +01:00
border-top: 7px solid var(--header-tab-text-white);
2021-08-30 13:40:26 +01:00
}
2021-03-02 14:46:38 +01:00
.active{
2021-10-21 14:15:50 +01:00
border-top: 7px solid var(--header-tab-text-white);
2021-03-05 14:54:10 +01:00
}
.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;
}
2021-07-29 15:51:42 +01:00
}
2021-10-21 14:15:50 +01:00
.tab {
color: var(--header-tab-text-white);
}