120 lines
2.1 KiB
SCSS
Raw Normal View History

2022-12-26 15:12:01 +03:00
.profile {
2022-12-28 09:45:26 +03:00
background: #F1F1F1;
height: 100%;
min-height: 100vh;
2022-12-26 15:12:01 +03:00
2022-12-28 09:45:26 +03:00
&__title {
font-weight: 700;
font-size: 22px;
line-height: 32px;
2023-01-09 18:04:06 +03:00
color: #000000;
2022-12-28 09:45:26 +03:00
span {
color: #52B709;
2022-12-26 15:12:01 +03:00
}
2023-01-09 18:04:06 +03:00
@media (max-width: 560px) {
font-size: 17px;
margin-top: 20px;
2022-12-26 15:12:01 +03:00
}
}
2022-12-28 09:45:26 +03:00
&__info {
min-height: 128px;
background: white;
border-radius: 12px;
margin-top: 30px;
2022-12-26 15:12:01 +03:00
display: flex;
align-items: center;
2022-12-28 09:45:26 +03:00
padding: 0 130px 0 45px;
justify-content: space-between;
}
2023-01-09 18:04:06 +03:00
&__items {
2022-12-28 09:45:26 +03:00
display: flex;
2023-01-09 18:04:06 +03:00
flex-wrap: wrap;
margin-top: 30px;
row-gap: 25px;
column-gap: 35px;
2022-12-28 09:45:26 +03:00
2023-01-09 18:04:06 +03:00
@media (max-width: 1175px) {
justify-content: center;
2023-01-02 22:52:41 +03:00
}
2023-01-09 18:04:06 +03:00
.item {
max-width: 353px;
width: 100%;
padding: 35px 45px 15px 30px;
2022-12-28 09:45:26 +03:00
background: #FFFFFF;
2023-01-09 18:04:06 +03:00
border-radius: 12px;
text-decoration: none;
cursor: pointer;
2023-01-02 22:52:41 +03:00
2023-01-09 18:04:06 +03:00
@media (max-width: 1175px) {
width: 48%;
max-width: none;
2023-01-02 22:52:41 +03:00
}
2022-12-28 09:45:26 +03:00
2023-01-09 18:04:06 +03:00
@media (max-width: 925px) {
width: 100%;
2023-01-02 22:52:41 +03:00
}
2023-01-09 18:04:06 +03:00
&__about {
2022-12-28 09:45:26 +03:00
display: flex;
2023-01-09 18:04:06 +03:00
column-gap: 20px;
align-items: center;
margin-bottom: 30px;
h3 {
color: #000000;
font-weight: 500;
font-size: 18px;
line-height: 22px;
max-width: 125px;
2022-12-28 09:45:26 +03:00
margin-bottom: 0;
}
}
2022-12-26 15:12:01 +03:00
2023-01-09 18:04:06 +03:00
&__info {
2022-12-28 09:45:26 +03:00
display: flex;
justify-content: space-between;
2023-01-09 18:04:06 +03:00
align-items: center;
2023-01-02 22:57:19 +03:00
2023-01-09 18:04:06 +03:00
p {
font-weight: 700;
font-size: 12px;
line-height: 20px;
color: #000000;
margin-bottom: 0;
2022-12-28 09:45:26 +03:00
2023-01-09 18:04:06 +03:00
span {
color: #52B709;
font-weight: 700;
2022-12-28 09:45:26 +03:00
}
}
2023-01-09 18:04:06 +03:00
&Link {
width: 48px;
2022-12-28 09:45:26 +03:00
height: 48px;
2023-01-09 18:04:06 +03:00
background: #DDEEC6;
border-radius: 50px;
2022-12-28 09:45:26 +03:00
display: flex;
justify-content: center;
2023-01-09 18:04:06 +03:00
align-items: center;
2022-12-28 09:45:26 +03:00
}
}
}
}
2023-01-09 18:04:06 +03:00
.container {
max-width: 1160px;
margin-top: 23px;
@media (max-width: 570px) {
margin-top: 0;
}
}
2023-01-09 17:47:04 +03:00
footer {
margin-top: 70px;
}
2022-12-26 15:12:01 +03:00
}