AdditionalAddonCard.js
4 years ago
AdditionalAddonCard.module.css
4 years ago
AdditionalAddons.js
4 years ago
AdditionalAddons.module.css
4 years ago
AddonsAdminPage.js
2 years ago
AddonsAdminPage.module.css
2 years ago
Button.js
4 years ago
Button.module.css
4 years ago
Card.js
4 years ago
Card.module.css
4 years ago
FreeAddOnTab.js
4 years ago
FreeAddOnTab.module.css
4 years ago
Hero.js
4 years ago
Hero.module.css
4 years ago
MustHaveAddonCard.js
4 years ago
MustHaveAddonCard.module.css
4 years ago
MustHaveAddons.js
4 years ago
MustHaveAddons.module.css
4 years ago
PricingPlanCard.js
4 years ago
PricingPlanCard.module.css
4 years ago
PricingPlans.js
4 years ago
PricingPlans.module.css
4 years ago
FreeAddOnTab.module.css
153 lines
| 1 | .freeAddonSection { |
| 2 | display: flex; |
| 3 | flex-direction: column; |
| 4 | align-items: center; |
| 5 | } |
| 6 | |
| 7 | .card { |
| 8 | display: grid; |
| 9 | row-gap: 1.25rem; |
| 10 | max-width: 51rem; |
| 11 | padding: 1.5rem 2rem; |
| 12 | } |
| 13 | |
| 14 | @media screen and (min-width: 64rem) { |
| 15 | .card { |
| 16 | column-gap: 5.25rem; |
| 17 | grid-auto-flow: column; |
| 18 | grid-template-columns: 5fr 4fr; |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | .emailReports { |
| 23 | background-color: #F6F9FC; |
| 24 | } |
| 25 | |
| 26 | .description p { |
| 27 | font-size: 1rem; |
| 28 | } |
| 29 | |
| 30 | .description strong { |
| 31 | color: #D75A4B; |
| 32 | font-style: italic; |
| 33 | font-weight: 800; |
| 34 | } |
| 35 | |
| 36 | .icon { |
| 37 | width: 2.5rem; |
| 38 | height: 2.5rem; |
| 39 | } |
| 40 | |
| 41 | .title { |
| 42 | display: inline-flex; |
| 43 | gap: 1.1em; |
| 44 | align-items: flex-end; |
| 45 | margin: 0; |
| 46 | font-weight: 700; |
| 47 | font-size: 1.4375rem; |
| 48 | line-height: 1.36; |
| 49 | } |
| 50 | |
| 51 | .nameAndFlag { |
| 52 | display: flex; |
| 53 | gap: 1rem; |
| 54 | align-items: center; |
| 55 | margin-bottom: 0.875rem; |
| 56 | } |
| 57 | |
| 58 | .includes { |
| 59 | font-size: 0.875rem; |
| 60 | font-weight: 700; |
| 61 | line-height: 1.36; |
| 62 | } |
| 63 | |
| 64 | .includes > h4 { |
| 65 | text-transform: uppercase; |
| 66 | } |
| 67 | |
| 68 | .informationHero { |
| 69 | display: block; |
| 70 | padding-top: 3rem; |
| 71 | padding-bottom: 1.5rem; |
| 72 | } |
| 73 | |
| 74 | .informationHero h2 { |
| 75 | font-size: 1.65rem; |
| 76 | } |
| 77 | |
| 78 | .formCard { |
| 79 | background-color: #F3F2EC; |
| 80 | display: flex; |
| 81 | flex-direction: column; |
| 82 | row-gap: 2.75rem; |
| 83 | padding: 3rem 4rem; |
| 84 | width: 100%; |
| 85 | max-width: 50.875rem; |
| 86 | } |
| 87 | |
| 88 | .formCard form { |
| 89 | display: flex; |
| 90 | flex-direction: column; |
| 91 | align-items: center; |
| 92 | row-gap: 2rem; |
| 93 | } |
| 94 | |
| 95 | .formCard__thankYou { |
| 96 | font-size: 1rem; |
| 97 | text-align: center; |
| 98 | } |
| 99 | |
| 100 | .formCard__inputs { |
| 101 | width: 100%; |
| 102 | display: flex; |
| 103 | flex-direction: row; |
| 104 | justify-content: space-between; |
| 105 | } |
| 106 | |
| 107 | .formCard label { |
| 108 | display: flex; |
| 109 | flex-direction: column; |
| 110 | font-size: 1rem; |
| 111 | font-weight: 400; |
| 112 | } |
| 113 | |
| 114 | .formCard label span { |
| 115 | padding-left: 0.3rem; |
| 116 | margin-bottom: 0.2rem; |
| 117 | } |
| 118 | |
| 119 | .formCard input:where([type="text"], [type="email"]) { |
| 120 | width: 20rem; |
| 121 | height: 3.1rem; |
| 122 | border: 0; |
| 123 | background-color: white; |
| 124 | box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.1); |
| 125 | padding: 0 0.5rem; |
| 126 | } |
| 127 | |
| 128 | .formCard input[type="submit"] { |
| 129 | padding: 1rem 0; |
| 130 | width: 100%; |
| 131 | text-transform: uppercase; |
| 132 | } |
| 133 | |
| 134 | @media screen and (max-width: 64rem) { |
| 135 | .formCard__inputs { |
| 136 | flex-direction: column; |
| 137 | row-gap: 2rem; |
| 138 | } |
| 139 | |
| 140 | .formCard input:where([type="text"], [type="email"]) { |
| 141 | width: 100%; |
| 142 | } |
| 143 | } |
| 144 | |
| 145 | .disclosure { |
| 146 | font-size: 0.73rem; |
| 147 | } |
| 148 | |
| 149 | .submissionError { |
| 150 | color: red; |
| 151 | font-size: 1rem; |
| 152 | } |
| 153 |