guild_front/src/pages/Profile/profile.scss

140 lines
2.7 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;
2023-01-09 20:53:23 +03:00
font-family: 'LabGrotesque', sans-serif;
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;
}
2022-12-28 09:45:26 +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 {
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-04-19 20:22:06 +03:00
// .item {
// max-width: 353px;
// width: 100%;
// padding: 35px 45px 15px 30px;
// background: #FFFFFF;
// border-radius: 12px;
// text-decoration: none;
// cursor: pointer;
// transition: all 0.3s ease;
// &:hover {
// box-shadow: 6px 5px 20px rgb(87 98 80 / 21%);
// transform: scale(1.02);
// }
// @media (max-width: 1175px) {
// width: 48%;
// max-width: none;
// }
// @media (max-width: 925px) {
// width: 100%;
// padding: 15px 25px;
// }
// &__about {
// display: flex;
// column-gap: 20px;
// align-items: center;
// margin-bottom: 30px;
// @media (max-width: 925px) {
// margin-bottom: 15px;
// }
// h3 {
// color: #000000;
// font-weight: 500;
// font-size: 18px;
// line-height: 22px;
// max-width: 125px;
// margin-bottom: 0;
// }
// }
// &__info {
// display: flex;
// justify-content: space-between;
// align-items: center;
// p {
// font-weight: 700;
// font-size: 12px;
// line-height: 20px;
// color: #000000;
// margin-bottom: 0;
// span {
// color: #52B709;
// font-weight: 700;
// }
// }
// &Link {
// width: 48px;
// height: 48px;
// background: #DDEEC6;
// border-radius: 50px;
// display: flex;
// justify-content: center;
// 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
}