guild_front/src/pages/PartnerRequests/partnerRequests.scss

365 lines
7.1 KiB
SCSS
Raw Normal View History

.partnerRequests {
2023-04-26 21:29:50 +03:00
background: #f1f1f1;
height: 100%;
min-height: 100vh;
2023-04-26 21:29:50 +03:00
font-family: "LabGrotesque", sans-serif;
.container {
max-width: 1160px;
margin-top: 23px;
@media (max-width: 570px) {
margin-top: 0;
}
}
&__title {
color: #000000;
font-weight: 700;
font-size: 22px;
line-height: 32px;
}
&__section {
margin-top: 25px;
2023-04-26 21:29:50 +03:00
background: #ffffff;
border-radius: 12px;
padding: 33px 45px 40px;
display: flex;
column-gap: 30px;
@media (max-width: 795px) {
padding: 20px 25px 25px;
}
@media (max-width: 750px) {
flex-direction: column;
}
&__items {
display: flex;
width: 77%;
flex-wrap: wrap;
column-gap: 20px;
row-gap: 25px;
@media (max-width: 795px) {
row-gap: 10px;
column-gap: 15px;
}
@media (max-width: 750px) {
order: 2;
width: 100%;
}
}
&__item {
display: flex;
width: 48%;
flex-direction: column;
2023-04-26 21:29:50 +03:00
background: #f1f1f1;
border-radius: 12px;
padding: 20px 27px 15px 25px;
transition: 0.3s all ease;
position: relative;
max-height: 100px;
@media (max-width: 585px) {
width: 100%;
}
&:before {
2023-04-26 21:29:50 +03:00
content: "...";
position: absolute;
right: 27px;
bottom: 17%;
2023-04-26 21:29:50 +03:00
color: #6f6f6f;
font-size: 23px;
}
&:hover {
text-decoration: none;
box-shadow: 6px 5px 20px rgb(87 98 80 / 21%);
transform: scale(1.02);
}
&__name {
color: #111112;
font-weight: 700;
font-size: 16px;
line-height: 32px;
margin-bottom: 9px;
}
&__count {
2023-04-26 21:29:50 +03:00
color: #6f6f6f;
font-weight: 500;
font-size: 12px;
line-height: 24px;
display: flex;
margin-bottom: 0;
span {
2023-04-26 21:29:50 +03:00
color: #6f6f6f;
font-weight: 500;
font-size: 14px;
line-height: 24px;
2023-04-26 21:29:50 +03:00
background: #dddddd;
border-radius: 4px;
width: 21px;
height: 24px;
display: flex;
justify-content: center;
align-items: center;
margin-left: 8px;
}
}
}
&__info {
display: flex;
flex-direction: column;
width: 22%;
padding-top: 5px;
@media (max-width: 750px) {
order: 1;
width: 100%;
text-align: center;
margin-bottom: 20px;
a {
margin: 0 auto;
width: 100%;
}
}
h3 {
2023-04-26 21:29:50 +03:00
color: #52b709;
font-weight: 700;
2023-03-16 15:10:53 +03:00
font-size: 17px;
line-height: 24px;
margin-bottom: 30px;
@media (max-width: 1085px) {
margin-bottom: 15px;
line-height: 18px;
}
}
p {
font-weight: 400;
2023-03-16 15:10:53 +03:00
font-size: 15px;
line-height: 24px;
color: #000000;
margin-bottom: 25px;
@media (max-width: 1085px) {
margin-bottom: 10px;
line-height: 19px;
}
}
a {
2023-04-26 21:29:50 +03:00
background: #52b709;
2023-03-16 15:10:53 +03:00
max-width: 188px;
border-radius: 44px;
2023-03-16 15:10:53 +03:00
height: 52px;
border: none;
font-weight: 400;
2023-03-16 15:10:53 +03:00
font-size: 15px;
line-height: 32px;
2023-04-26 21:29:50 +03:00
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
transition: 0.3s all ease;
span {
color: white;
font-weight: 700;
font-size: 20px;
margin-right: 8px;
}
&:hover {
box-shadow: 6px 5px 20px rgb(87 98 80 / 21%);
transform: scale(1.02);
text-decoration: none;
2023-04-26 21:29:50 +03:00
color: #ffffff;
}
}
}
}
2023-03-27 16:03:24 +03:00
&__noItems {
display: flex;
flex-direction: column;
&__create {
2023-04-26 21:29:50 +03:00
background: #ffffff;
2023-03-27 16:03:24 +03:00
border-radius: 12px;
padding: 29px 33px 23px 36px;
display: flex;
margin-top: 40px;
align-items: center;
@media (max-width: 1140px) {
flex-direction: column;
row-gap: 25px;
}
@media (max-width: 670px) {
padding: 15px 15px;
}
2023-04-26 21:29:50 +03:00
&__link {
display: flex;
background: #f1f1f1;
border-radius: 12px;
padding: 11px 25px 12px 30px;
align-items: center;
width: 100%;
min-width: 650px;
justify-content: space-between;
max-height: 70px;
2023-03-27 16:03:24 +03:00
2023-04-26 21:29:50 +03:00
@media (max-width: 720px) {
min-width: auto;
}
2023-03-27 16:03:24 +03:00
2023-04-26 21:29:50 +03:00
@media (max-width: 670px) {
max-height: inherit;
flex-direction: column;
row-gap: 8px;
width: auto;
2023-03-27 16:03:24 +03:00
2023-04-26 21:29:50 +03:00
img {
margin-right: 5px;
2023-03-27 16:03:24 +03:00
}
2023-04-26 21:29:50 +03:00
}
@media (max-width: 480px) {
padding: 10px 15px;
}
p {
font-weight: 700;
font-size: 16px;
line-height: 32px;
color: #111112;
margin-bottom: 0;
2023-03-27 16:03:24 +03:00
@media (max-width: 480px) {
2023-04-26 21:29:50 +03:00
font-size: 14px;
2023-03-27 16:03:24 +03:00
}
2023-04-26 21:29:50 +03:00
@media (max-width: 380px) {
font-size: 12px;
}
}
2023-03-27 16:03:24 +03:00
2023-04-26 21:29:50 +03:00
a {
background: #52b709;
max-width: 174px;
border-radius: 44px;
width: 100%;
height: 46px;
border: none;
font-weight: 400;
font-size: 15px;
line-height: 32px;
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
transition: 0.3s all ease;
2023-03-27 16:03:24 +03:00
2023-04-26 21:29:50 +03:00
span {
color: white;
font-weight: 700;
font-size: 20px;
margin-right: 8px;
2023-03-27 16:03:24 +03:00
}
2023-04-26 21:29:50 +03:00
&:hover {
box-shadow: 6px 5px 20px rgb(87 98 80 / 21%);
transform: scale(1.02);
text-decoration: none;
color: #ffffff;
2023-03-27 16:03:24 +03:00
}
}
2023-04-26 21:29:50 +03:00
}
&__instruction {
margin-left: 45px;
2023-03-27 16:03:24 +03:00
2023-04-26 21:29:50 +03:00
@media (max-width: 1140px) {
margin-left: 0;
}
h3 {
color: #52b709;
font-weight: 700;
font-size: 15px;
line-height: 15px;
margin-bottom: 7px;
2023-03-27 16:03:24 +03:00
@media (max-width: 1140px) {
2023-04-26 21:29:50 +03:00
text-align: center;
font-size: 22px;
margin-bottom: 15px;
2023-03-27 16:03:24 +03:00
}
2023-04-26 21:29:50 +03:00
@media (max-width: 530px) {
font-size: 16px;
2023-03-27 16:03:24 +03:00
}
2023-04-26 21:29:50 +03:00
}
p {
font-weight: 400;
font-size: 15px;
line-height: 24px;
color: #000000;
margin-bottom: 0;
2023-03-27 16:03:24 +03:00
2023-04-26 21:29:50 +03:00
@media (max-width: 1140px) {
text-align: center;
font-size: 16px;
}
@media (max-width: 530px) {
font-size: 14px;
2023-03-27 16:03:24 +03:00
}
}
}
2023-04-26 21:29:50 +03:00
}
2023-03-27 16:03:24 +03:00
&__freeEmployees {
h2 {
font-weight: 500;
font-size: 30px;
line-height: 32px;
}
2023-04-26 21:29:50 +03:00
.catalogLink {
2023-03-27 16:03:24 +03:00
margin-top: 70px;
width: 100%;
font-weight: 700;
font-size: 16px;
line-height: 32px;
color: #111112;
text-align: center;
a {
2023-04-26 21:29:50 +03:00
color: #0c7636;
2023-03-27 16:03:24 +03:00
}
}
}
}
footer {
margin-top: 70px;
}
}