Blame view
public/scss/blocks/_vacancies.scss
2.03 KB
bdd23ce34 На сервер. Правки |
1 2 3 4 5 6 7 8 9 |
.vacancies { padding: 50px 0; @media (min-width: $desktop) { padding: 100px 0; } &__body { display: flex; flex-direction: column-reverse; gap: 20px; |
1c6078a15 Обновление от вос... |
10 |
width: 100%; |
bdd23ce34 На сервер. Правки |
11 12 13 14 15 16 17 18 |
margin-top: 20px; @media (min-width: $laptop) { margin-top: 30px; gap: 30px; } } &__more { width: 100%; |
1c6078a15 Обновление от вос... |
19 20 |
@media (min-width: $tablet) { width: auto; |
bdd23ce34 На сервер. Правки |
21 |
margin: 0 auto; |
bdd23ce34 На сервер. Правки |
22 23 |
} } |
bdd23ce34 На сервер. Правки |
24 25 26 27 28 29 |
&__list { display: flex; flex-direction: column; gap: 15px; @media (min-width: $tablet) { display: grid; |
1c6078a15 Обновление от вос... |
30 |
grid-template-columns: repeat(2, 1fr); |
bdd23ce34 На сервер. Правки |
31 32 33 |
} @media (min-width: $laptop) { display: grid; |
1c6078a15 Обновление от вос... |
34 |
grid-template-columns: repeat(3, 1fr); |
bdd23ce34 На сервер. Правки |
35 36 |
gap: 20px; } |
1c6078a15 Обновление от вос... |
37 38 39 |
@media (min-width: $desktop) { grid-template-columns: repeat(4, 1fr); } |
34d973f0f Коммит обновление... |
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
&-label { font-weight: 700; font-size: 22px; } &-col { display: flex; flex-direction: column; gap: 15px; margin-top: 15px; @media (min-width: $tablet) { margin-top: 0; } &:first-child { margin-top: 0; } } |
bdd23ce34 На сервер. Правки |
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
} &__item { display: none; box-shadow: $shadow; border-radius: 12px; background: $white; border: 1px solid #e6e7e7; overflow: hidden; &:nth-of-type(1), &:nth-of-type(2), &:nth-of-type(3), &:nth-of-type(4), &:nth-of-type(5), &:nth-of-type(6), &:nth-of-type(7), |
34d973f0f Коммит обновление... |
71 |
&:nth-of-type(8) { |
bdd23ce34 На сервер. Правки |
72 73 74 75 76 77 78 |
display: flex; } > span { border-left: 10px solid $green; padding: 20px 14px; display: flex; flex-direction: column; |
1c6078a15 Обновление от вос... |
79 |
align-items: flex-start; |
bdd23ce34 На сервер. Правки |
80 81 |
gap: 5px; justify-content: space-between; |
1c6078a15 Обновление от вос... |
82 83 84 |
@media (min-width: $laptop) { gap: 10px; } |
bdd23ce34 На сервер. Правки |
85 86 87 88 89 90 91 92 93 94 95 |
} b { font-weight: 700; font-size: 14px; @media (min-width: $laptop) { font-size: 20px; } } &:hover b { color: $green; } |
1c6078a15 Обновление от вос... |
96 97 98 99 100 101 102 |
u { text-decoration: none; font-size: 14px; @media (min-width: $laptop) { font-size: 18px; } } |
bdd23ce34 На сервер. Правки |
103 104 105 |
i { font-size: 12px; font-style: normal; |
1c6078a15 Обновление от вос... |
106 |
border-bottom: 1px dashed $green; |
bdd23ce34 На сервер. Правки |
107 108 109 110 111 112 113 114 115 |
@media (min-width: $laptop) { font-size: 16px; } span { font-weight: 700; color: $green; } } } |
34d973f0f Коммит обновление... |
116 |
&__body.active &__list &__item { |
bdd23ce34 На сервер. Правки |
117 118 119 |
display: flex; } } |