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

180 lines
3.0 KiB
SCSS
Raw Normal View History

2023-09-06 21:23:21 +01:00
@import "~src/function.scss";
2023-09-06 21:23:21 +01:00
.div-top-header {
2023-07-12 15:49:34 +01:00
margin: 0 em(20);
2021-04-23 10:35:53 +01:00
// background-color: #0782c9;
//padding-top: em(15px);
2023-09-06 21:23:21 +01:00
border: 0 !important;
2021-03-02 14:46:38 +01:00
}
2023-09-06 21:23:21 +01:00
.profile-image {
vertical-align: middle;
width: 40px;
height: 40px;
border-radius: 50%;
display: block; /* Torna a imagem um elemento de bloco */
margin: 0 auto;
}
2023-08-19 22:25:12 +01:00
2023-09-06 21:23:21 +01:00
.div-logo {
2021-03-02 14:46:38 +01:00
background: transparent;
2023-07-06 12:18:15 +01:00
width: em(140);
2021-03-02 14:46:38 +01:00
justify-content: center;
display: flex;
2022-02-24 10:53:32 +01:00
color: black;
overflow: auto;
2022-07-06 17:06:27 +01:00
.logo-icon {
2022-02-24 10:53:32 +01:00
width: 25.33%;
overflow: auto;
2022-07-06 17:06:27 +01:00
img {
2022-02-24 10:53:32 +01:00
width: 100%;
margin: 0px auto;
}
}
2023-09-06 21:23:21 +01:00
.logo-description {
2022-02-24 10:53:32 +01:00
width: 74.67%;
margin: 0 auto;
overflow: auto;
font-size: 8.5px;
font-family: Bahnschrift;
2023-09-06 21:23:21 +01:00
.logo-description-content {
2022-02-24 10:53:32 +01:00
width: 100%;
2023-09-06 21:23:21 +01:00
.logo-description-text {
2022-02-24 10:53:32 +01:00
font-weight: 700;
text-align: center;
width: 100%;
margin: 0 !important;
padding: 0 !important;
}
2023-09-06 21:23:21 +01:00
.add-line {
2022-02-24 10:53:32 +01:00
width: 100%;
border-bottom: 1px solid #000;
margin-bottom: 2.5px !important;
padding: 0 !important;
}
2022-03-09 10:06:25 +01:00
2023-09-06 21:23:21 +01:00
.add-line-white {
2022-03-09 10:06:25 +01:00
width: 100%;
border-bottom: 1px solid #fff;
margin-bottom: 2.5px !important;
padding: 0 !important;
}
}
2023-09-06 21:23:21 +01:00
.color-white {
2022-03-09 10:06:25 +01:00
color: #fff !important;
2022-02-24 10:53:32 +01:00
}
2023-09-06 21:23:21 +01:00
.add-botton-border {
2022-02-24 10:53:32 +01:00
border-bottom: 1px solid #000;
}
2023-09-06 21:23:21 +01:00
.add-botton-border-white {
2022-03-09 10:06:25 +01:00
border-bottom: 1px solid #fff;
}
2022-02-24 10:53:32 +01:00
}
2021-03-01 15:45:30 +01:00
}
2022-07-06 17:06:27 +01:00
.header-btns {
2021-07-29 15:51:42 +01:00
justify-content: center;
align-items: center;
}
2022-07-06 17:06:27 +01:00
.div-profile {
2023-09-06 21:23:21 +01:00
width: 40px;
height: 40px;
text-align: center;
2021-07-29 15:51:42 +01:00
background-color: transparent;
2023-08-24 22:15:56 +01:00
display: flex !important;
2023-09-06 21:23:21 +01:00
justify-content:space-around;
2023-08-24 22:15:56 +01:00
border-radius: 50px;
2021-07-29 15:51:42 +01:00
2023-09-06 21:23:21 +01:00
.icon {
2021-07-29 15:51:42 +01:00
position: relative;
border: none !important;
}
2021-08-19 18:28:00 +01:00
.icon-badge {
background-color: red;
2023-07-07 12:03:03 +01:00
font-size: rem(12);
2021-08-19 18:28:00 +01:00
color: white;
text-align: center;
2023-09-06 21:23:21 +01:00
width: 20px;
height: 20px;
2021-08-19 18:28:00 +01:00
border-radius: 35%;
position: absolute; /* changed */
top: 5px; /* changed */
right: 27px; /* changed */
2022-07-06 17:06:27 +01:00
}
2021-08-19 18:28:00 +01:00
2023-09-06 21:23:21 +01:00
.profile-text {
2023-07-07 12:03:03 +01:00
font-size: rem(20);
2021-07-29 15:51:42 +01:00
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
}
}
2022-07-06 17:06:27 +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
2023-09-06 21:23:21 +01:00
.desktop {
2021-03-01 15:45:30 +01:00
display: none;
}
2022-04-08 15:49:35 +01:00
@media only screen and (min-width: 1366px) {
2023-09-06 21:23:21 +01:00
.mobile {
2022-04-08 15:59:25 +01:00
display: none !important;
}
2023-09-06 21:23:21 +01:00
.desktop {
2022-04-08 15:59:25 +01:00
display: block;
}
}
2021-03-02 14:46:38 +01:00
2023-09-06 21:23:21 +01:00
.tab {
2021-03-02 14:46:38 +01:00
height: 65px;
2021-05-03 13:08:57 +01:00
cursor: pointer;
user-select: none;
2021-03-02 14:46:38 +01:00
}
2023-09-06 21:23:21 +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
}
2023-09-06 21:23:21 +01:00
.active {
2021-10-21 14:15:50 +01:00
border-top: 7px solid var(--header-tab-text-white);
2023-09-06 21:23:21 +01:00
span {
2022-01-19 10:39:05 +01:00
font-weight: 650;
}
2021-03-05 14:54:10 +01:00
}
2023-09-06 21:23:21 +01:00
.search-input-container {
2021-03-05 14:54:10 +01:00
background-color: white;
border-radius: 27.5px;
border: solid 1px #ebebeb;
2023-09-06 21:23:21 +01:00
.icon {
2021-03-05 14:54:10 +01:00
color: #797979;
2023-07-07 12:03:03 +01:00
width: rem(45);
height: rem(45);
2021-03-05 14:54:10 +01:00
display: flex;
justify-content: center;
2023-07-07 12:03:03 +01:00
font-size: rem(25);
2021-03-05 14:54:10 +01:00
align-items: center;
}
2023-09-06 21:23:21 +01:00
.input-text {
2021-03-05 14:54:10 +01:00
width: 100%;
}
2023-09-06 21:23:21 +01:00
.icon-z {
2021-03-05 14:54:10 +01:00
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);
}