guild_front/src/components/OutstaffingBlock/outstaffingBlock.scss

126 lines
2.0 KiB
SCSS
Raw Normal View History

2023-04-05 19:38:38 +03:00
body {
2023-05-24 15:34:43 +03:00
font-family: "LabGrotesque", sans-serif !important;
2023-04-05 19:38:38 +03:00
}
2023-03-27 16:03:24 +03:00
.container {
max-width: 1160px !important;
}
.catalog {
2023-05-24 15:34:43 +03:00
background: #f1f1f1;
2023-03-27 16:03:24 +03:00
height: 100%;
min-height: 100vh;
2023-05-24 15:34:43 +03:00
font-family: "LabGrotesque", sans-serif;
2023-03-27 16:30:35 +03:00
padding-top: 23px;
2023-03-27 16:03:24 +03:00
&__title {
font-weight: 700;
font-size: 22px;
line-height: 32px;
}
}
2021-11-30 16:00:58 +02:00
.outstaffing-block__selected .outstaffing-block__img {
background-color: #52b70999;
color: #f9f9f9;
}
.outstaffing-block {
display: flex;
flex-direction: column;
align-items: center;
& > div {
margin-top: 60px;
& > ul {
padding-left: 0;
}
}
& > p {
2023-05-24 15:34:43 +03:00
font-family: "GT Eesti Pro Display";
2021-11-30 16:00:58 +02:00
font-size: 1.2em;
font-weight: 300;
font-style: normal;
letter-spacing: normal;
line-height: 36px;
text-align: left;
margin-bottom: 0;
}
&__img {
2023-01-09 20:53:23 +03:00
cursor: pointer;
2021-11-30 16:00:58 +02:00
min-width: 260px;
min-height: 120px;
background-color: #f9f9f9;
border-radius: 20px;
position: relative;
h3 {
position: absolute;
2023-04-05 19:38:38 +03:00
right: 13%;
top: 30%;
max-width: 130px;
2023-05-24 15:34:43 +03:00
font-family: "GT Eesti Pro Display";
2021-11-30 16:00:58 +02:00
font-size: 18px;
font-weight: 400;
font-style: normal;
letter-spacing: normal;
line-height: normal;
2023-04-05 19:38:38 +03:00
text-align: center;
2021-11-30 16:00:58 +02:00
}
img {
position: absolute;
}
}
&__mobile--block {
display: block;
animation: fadeInFromNone 0.5s ease-out;
}
&__border {
border: 2px solid #cdeaba;
}
&__items {
li {
2023-05-24 15:34:43 +03:00
font-family: "GT Eesti Pro Display";
2021-11-30 16:00:58 +02:00
font-size: 1.8em;
font-weight: 100;
font-style: normal;
letter-spacing: normal;
line-height: 36px;
text-align: left;
list-style: none;
cursor: pointer;
}
}
}
@media (max-width: 575.98px) {
.outstaffing-block__mobile--none {
display: none;
}
}
@media (max-width: 1199px) {
.outstaffing-block {
margin-top: 0;
& > div {
margin-top: 32px;
}
}
}
@media (max-width: 575.98px) {
.outstaffing-block {
margin-top: 40px;
&____text {
display: none;
}
}
}