guild_front/src/pages/Profile/profile.scss

65 lines
1.0 KiB
SCSS
Raw Normal View History

2022-12-26 15:12:01 +03:00
.profile {
2023-12-05 14:22:45 +03:00
background: #f1f1f1;
2024-02-14 16:09:09 +03:00
display: flex;
flex-direction: column;
2022-12-28 09:45:26 +03:00
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 {
display: flex;
p {
color: black;
}
2023-12-05 14:22:45 +03:00
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
}
@media (max-width: 500px) {
font-size: 15px;
}
2022-12-26 15:12:01 +03:00
}
2022-12-28 09:45:26 +03:00
&__info {
2023-12-05 14:22:45 +03:00
min-height: 110px;
2022-12-28 09:45:26 +03:00
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
}
2022-12-28 09:45:26 +03:00
}
2023-01-09 18:04:06 +03:00
.container {
max-width: 1160px;
margin-top: 23px;
2024-02-14 16:09:09 +03:00
display: flex;
flex-direction: column;
flex: 1;
2023-01-09 18:04:06 +03:00
@media (max-width: 570px) {
margin-top: 0;
}
}
2022-12-26 15:12:01 +03:00
}