|
1 | 1 | [data-theme='light'] .TOCItemsWrapper > div { |
2 | 2 | background-color: var(--swm-cornflower-20); |
3 | 3 | } |
| 4 | + |
| 5 | +.hireUsContainer { |
| 6 | + padding: 26px 20px; |
| 7 | + display: flex; |
| 8 | + flex-direction: column; |
| 9 | + align-items: center; |
| 10 | + background-color: var(--swm-blue-light-20); |
| 11 | + gap: 1rem; |
| 12 | +} |
| 13 | + |
| 14 | +[data-theme='dark'] .hireUsContainer { |
| 15 | + border: 1px solid var(--swm-navy-light-40); |
| 16 | + background-color: transparent; |
| 17 | +} |
| 18 | + |
| 19 | +.buttonContainer { |
| 20 | + width: 100%; |
| 21 | + height: 48px !important; |
| 22 | + font-size: 16px; |
| 23 | + font-weight: 500; |
| 24 | +} |
| 25 | + |
| 26 | +.hireUsContainer p { |
| 27 | + font-size: 16px; |
| 28 | + font-weight: 500; |
| 29 | + margin: 0; |
| 30 | + color: var(--swm-navy-light-100); |
| 31 | + text-align: center; |
| 32 | +} |
| 33 | + |
| 34 | +[data-theme='dark'] .hireUsContainer p { |
| 35 | + background-color: transparent; |
| 36 | + color: var(--swm-navy-light-40); |
| 37 | +} |
| 38 | + |
| 39 | +/* HIRE US TOC - button styling */ |
| 40 | + |
| 41 | +.buttonTOCStyling { |
| 42 | + background-color: var(--swm-hire-us-toc); |
| 43 | + color: var(--swm-hire-us-toc-color); |
| 44 | +} |
| 45 | + |
| 46 | +.buttonTOCStyling:hover { |
| 47 | + background-color: transparent; |
| 48 | + color: var(--swm-hire-us-toc-color-hover); |
| 49 | +} |
| 50 | + |
| 51 | +.buttonTOCStyling svg { |
| 52 | + stroke: var(--swm-hire-us-toc-color); |
| 53 | +} |
| 54 | + |
| 55 | +.buttonTOCStyling:hover svg { |
| 56 | + stroke: var(--swm-hire-us-toc-color-hover); |
| 57 | +} |
| 58 | + |
| 59 | +.buttonTOCBorderStyling { |
| 60 | + border: 1px solid var(--swm-hire-us-toc); |
| 61 | +} |
| 62 | + |
| 63 | +.buttonTOCBorderStyling:hover { |
| 64 | + border: 1px solid var(--swm-hire-us-toc-border-hover); |
| 65 | +} |
| 66 | + |
| 67 | +.hireUsButton { |
| 68 | + height: 48px; |
| 69 | + padding: 1em 1.5em 1em 1em; |
| 70 | + |
| 71 | + font-weight: 500; |
| 72 | + font-size: 16px; |
| 73 | + text-wrap: nowrap; |
| 74 | + |
| 75 | + cursor: pointer; |
| 76 | + transition: |
| 77 | + background-color 0.3s, |
| 78 | + color 0.3s; |
| 79 | + |
| 80 | + display: flex; |
| 81 | + align-items: center; |
| 82 | + justify-content: center; |
| 83 | +} |
| 84 | + |
| 85 | +a.hireUsButtonLink:hover { |
| 86 | + text-decoration: none !important; |
| 87 | +} |
| 88 | + |
| 89 | +@media (max-width: 768px) { |
| 90 | + .hireUsButton, |
| 91 | + .hireUsButtonLink { |
| 92 | + width: 100%; |
| 93 | + } |
| 94 | + .hireUsButton { |
| 95 | + font-size: 18px; |
| 96 | + } |
| 97 | +} |
| 98 | + |
| 99 | +.hireUsButton p { |
| 100 | + margin: 0 0 2px 0; |
| 101 | +} |
| 102 | + |
| 103 | +.arrow { |
| 104 | + position: relative; |
| 105 | + display: flex; |
| 106 | + justify-content: center; |
| 107 | + align-items: center; |
| 108 | + |
| 109 | + width: 16px; |
| 110 | + height: 16px; |
| 111 | + transition: left 0.3s; |
| 112 | + left: 8px; |
| 113 | +} |
| 114 | + |
| 115 | +.hireUsButton:hover .arrow { |
| 116 | + left: 16px; |
| 117 | +} |
| 118 | + |
| 119 | +.hireUsButton svg { |
| 120 | + stroke-width: 1.5; |
| 121 | + stroke-linecap: round; |
| 122 | + stroke-linejoin: round; |
| 123 | + transition: stroke 0.3s; |
| 124 | +} |
0 commit comments