113 lines
1.7 KiB
SCSS
Raw Normal View History

2022-12-28 09:45:26 +03:00
.profileHeader {
width: 100%;
display: flex;
flex-direction: column;
2023-05-24 19:23:24 +03:00
font-family: "LabGrotesque", sans-serif;
2022-12-28 09:45:26 +03:00
&__head {
2023-05-24 19:23:24 +03:00
background: #e1fccf;
2022-12-28 09:45:26 +03:00
}
&__container {
max-width: 1160px;
2023-03-27 16:03:24 +03:00
padding: 0 15px;
2022-12-28 09:45:26 +03:00
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
min-height: 50px;
}
&__title {
font-weight: 700;
font-size: 20px;
line-height: 32px;
margin-bottom: 0;
2023-03-01 00:28:58 +03:00
color: black;
2022-12-28 09:45:26 +03:00
span {
2023-05-24 19:23:24 +03:00
color: #52b709;
2022-12-28 09:45:26 +03:00
}
2023-03-01 00:28:58 +03:00
&:hover {
color: black;
text-decoration: none;
}
2022-12-28 09:45:26 +03:00
}
&__logout {
background: none;
border: none;
font-weight: 500;
font-size: 16px;
line-height: 32px;
color: #000000;
}
&__info {
2023-05-24 19:23:24 +03:00
background: #ffffff;
2022-12-28 09:45:26 +03:00
}
&__nav {
display: flex;
2023-05-10 12:35:00 +03:00
flex-wrap: wrap;
2022-12-28 09:45:26 +03:00
column-gap: 30px;
.active {
color: #000000 !important;
}
a {
2023-01-16 20:38:33 +03:00
text-decoration: none !important;
2022-12-28 09:45:26 +03:00
cursor: pointer;
font-weight: 700;
font-size: 18px;
line-height: 32px;
color: #807777 !important;
2023-01-13 15:53:07 +03:00
transition: all 0.3s ease;
&:hover {
color: #261a1a !important;
}
2022-12-28 09:45:26 +03:00
}
2023-01-02 22:52:41 +03:00
@media (max-width: 800px) {
column-gap: 15px;
a {
font-size: 12px;
}
}
2023-02-17 15:19:49 +03:00
@media (max-width: 450px) {
column-gap: 8px;
}
2022-12-28 09:45:26 +03:00
}
&__personalInfo {
display: flex;
column-gap: 20px;
align-items: center;
&Name {
margin-bottom: 0;
font-size: 12px;
line-height: 32px;
max-width: 150px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
2023-01-02 22:52:41 +03:00
@media (max-width: 600px) {
display: none;
}
2022-12-28 09:45:26 +03:00
}
&Avatar {
width: 37px;
height: 37px;
border-radius: 100px;
}
}
}