| 1 |
html, |
| 2 |
body { |
| 3 |
font-size: 14px; |
| 4 |
font-family: 'DM Sans', 'Roboto', sans-serif !important; |
| 5 |
font-weight: 400; |
| 6 |
-ms-text-size-adjust: 100%; |
| 7 |
-webkit-font-smoothing: antialiased; |
| 8 |
-moz-osx-font-smoothing: grayscale; |
| 9 |
} |
| 10 |
|
| 11 |
.btn { |
| 12 |
&--cta { |
| 13 |
text-transform: uppercase; |
| 14 |
font-weight: 500; |
| 15 |
padding-left: 2.3rem; |
| 16 |
padding-right: 2.3rem; |
| 17 |
} |
| 18 |
} |
| 19 |
|
| 20 |
.primary-header { |
| 21 |
color: var(--primaryText); |
| 22 |
|
| 23 |
&--grey { |
| 24 |
color: var(--ligth-text); |
| 25 |
} |
| 26 |
font-weight: 700; |
| 27 |
margin-bottom: 1rem; |
| 28 |
text-align: center; |
| 29 |
} |
| 30 |
|
| 31 |
.secondary-header { |
| 32 |
margin-bottom: 1rem; |
| 33 |
text-align: center; |
| 34 |
} |
| 35 |
|
| 36 |
h1, |
| 37 |
.h1 { |
| 38 |
font-size: 24px; |
| 39 |
line-height: 32px; |
| 40 |
font-weight: 700; |
| 41 |
} |
| 42 |
|
| 43 |
h2, |
| 44 |
.h2 { |
| 45 |
font-size: 20px; |
| 46 |
line-height: 32px; |
| 47 |
font-weight: 700; |
| 48 |
} |
| 49 |
|
| 50 |
h3, |
| 51 |
.h3 { |
| 52 |
font-size: 16px; |
| 53 |
line-height: 24px; |
| 54 |
font-weight: 700; |
| 55 |
} |
| 56 |
|
| 57 |
h4, |
| 58 |
.h4, |
| 59 |
.h-button, |
| 60 |
.btn, |
| 61 |
button { |
| 62 |
font-size: 14px; |
| 63 |
line-height: 24px; |
| 64 |
font-weight: 700; |
| 65 |
} |
| 66 |
|
| 67 |
body, |
| 68 |
li, |
| 69 |
p { |
| 70 |
font-size: 14px; |
| 71 |
line-height: 24px; |
| 72 |
font-weight: 400; |
| 73 |
margin: 0; |
| 74 |
} |
| 75 |
|
| 76 |
.helper-text { |
| 77 |
font-size: 12px; |
| 78 |
line-height: 20px; |
| 79 |
font-weight: 400; |
| 80 |
} |
| 81 |
|
| 82 |
p { |
| 83 |
color: var(--secondaryText); |
| 84 |
} |
| 85 |
|
| 86 |
b, |
| 87 |
strong { |
| 88 |
font-weight: bold; |
| 89 |
} |
| 90 |
|
| 91 |
a { |
| 92 |
color: var(--primary); |
| 93 |
|
| 94 |
&:hover { |
| 95 |
color: var(--primary); |
| 96 |
} |
| 97 |
} |
| 98 |
|
| 99 |
.link-disabled { |
| 100 |
color: var(--ligth-text); |
| 101 |
} |
| 102 |
|
| 103 |
.text-warning-dark, |
| 104 |
a.text-warning-dark { |
| 105 |
color: var(--warning-dark) !important; |
| 106 |
|
| 107 |
&:hover { |
| 108 |
color: var(--warning-dark) !important; |
| 109 |
} |
| 110 |
} |
| 111 |
|
| 112 |
.text-warning-light, |
| 113 |
a.text-warning-light { |
| 114 |
color: var(--warning-light) !important; |
| 115 |
|
| 116 |
&:hover { |
| 117 |
color: var(--warning-light) !important; |
| 118 |
} |
| 119 |
} |
| 120 |
|
| 121 |
.text-success-light, |
| 122 |
a.text-success-light { |
| 123 |
color: var(--success-light) !important; |
| 124 |
|
| 125 |
&:hover { |
| 126 |
color: var(--success-light) !important; |
| 127 |
} |
| 128 |
} |
| 129 |
|
| 130 |
.text-success-dark, |
| 131 |
a.text-success-dark { |
| 132 |
color: var(--success-dark) !important; |
| 133 |
|
| 134 |
&:hover { |
| 135 |
color: var(--success-dark) !important; |
| 136 |
} |
| 137 |
} |
| 138 |
|
| 139 |
.text-danger-light, |
| 140 |
a.text-danger-light { |
| 141 |
color: var(--danger-light) !important; |
| 142 |
|
| 143 |
&:hover { |
| 144 |
color: var(--danger-light) !important; |
| 145 |
} |
| 146 |
} |
| 147 |
|
| 148 |
.text-header-bg, |
| 149 |
a.text-header-bg { |
| 150 |
color: var(--header-bg) !important; |
| 151 |
|
| 152 |
&:hover { |
| 153 |
color: var(--header-bg) !important; |
| 154 |
} |
| 155 |
} |
| 156 |
|
| 157 |
.text-gray-light, |
| 158 |
a.text-gray-light { |
| 159 |
color: var(--gray-light) !important; |
| 160 |
|
| 161 |
&:hover { |
| 162 |
color: var(--gray-dark) !important; |
| 163 |
} |
| 164 |
} |
| 165 |
|
| 166 |
.text-gray { |
| 167 |
color: var(--gray) !important; |
| 168 |
} |
| 169 |
|
| 170 |
a.text-gray { |
| 171 |
color: var(--gray) !important; |
| 172 |
|
| 173 |
&:hover { |
| 174 |
color: var(--gray-dark) !important; |
| 175 |
} |
| 176 |
} |
| 177 |
|
| 178 |
.text-black, |
| 179 |
a.text-black { |
| 180 |
color: var(--dark) !important; |
| 181 |
|
| 182 |
&:hover { |
| 183 |
color: var(--dark) !important; |
| 184 |
} |
| 185 |
} |
| 186 |
|
| 187 |
.text-dark, |
| 188 |
a.text-dark { |
| 189 |
color: var(--dark) !important; |
| 190 |
|
| 191 |
&:hover { |
| 192 |
color: var(--dark) !important; |
| 193 |
} |
| 194 |
} |
| 195 |
|
| 196 |
.text-light, |
| 197 |
a.text-light { |
| 198 |
color: var(--light) !important; |
| 199 |
|
| 200 |
&:hover { |
| 201 |
color: var(--light) !important; |
| 202 |
} |
| 203 |
} |
| 204 |
|
| 205 |
.text-danger, |
| 206 |
a.text-danger { |
| 207 |
color: var(--danger) !important; |
| 208 |
|
| 209 |
&:hover { |
| 210 |
color: var(--danger) !important; |
| 211 |
} |
| 212 |
} |
| 213 |
|
| 214 |
.text-warning-regular, |
| 215 |
a.text-warning-regular { |
| 216 |
color: var(--warning-regular) !important; |
| 217 |
|
| 218 |
&:hover { |
| 219 |
color: var(--warning-regular) !important; |
| 220 |
} |
| 221 |
} |
| 222 |
|
| 223 |
.text-warning, |
| 224 |
a.text-warning { |
| 225 |
color: var(--warning) !important; |
| 226 |
|
| 227 |
&:hover { |
| 228 |
color: var(--warning) !important; |
| 229 |
} |
| 230 |
} |
| 231 |
|
| 232 |
.text-info, |
| 233 |
a.text-info { |
| 234 |
color: var(--primary-hostinger) !important; |
| 235 |
|
| 236 |
&:hover { |
| 237 |
color: var(--primary-hostinger) !important; |
| 238 |
} |
| 239 |
} |
| 240 |
|
| 241 |
.text-success, |
| 242 |
a.text-success { |
| 243 |
color: var(--success) !important; |
| 244 |
|
| 245 |
&:hover { |
| 246 |
color: var(--success) !important; |
| 247 |
} |
| 248 |
} |
| 249 |
|
| 250 |
.text-header-text, |
| 251 |
a.text-header-text { |
| 252 |
color: var(--header-text) !important; |
| 253 |
|
| 254 |
&:hover { |
| 255 |
color: var(--header-text) !important; |
| 256 |
} |
| 257 |
} |
| 258 |
|
| 259 |
.text-secondary, |
| 260 |
a.text-secondary { |
| 261 |
color: var(--secondary) !important; |
| 262 |
|
| 263 |
&:hover { |
| 264 |
color: var(--secondary) !important; |
| 265 |
} |
| 266 |
} |
| 267 |
|
| 268 |
.text-primary, |
| 269 |
a.text-primary { |
| 270 |
color: var(--primary) !important; |
| 271 |
|
| 272 |
&:hover { |
| 273 |
color: var(--primary) !important; |
| 274 |
} |
| 275 |
} |
| 276 |
|
| 277 |
.text-primary-light, |
| 278 |
a.text-primary-light { |
| 279 |
color: var(--primary-light) !important; |
| 280 |
|
| 281 |
&:hover { |
| 282 |
color: var(--primary-light) !important; |
| 283 |
} |
| 284 |
} |
| 285 |
|
| 286 |
.text-meteorite-dark, |
| 287 |
a.text-meteorite-dark { |
| 288 |
color: var(--meteorite-dark) !important; |
| 289 |
|
| 290 |
&:hover { |
| 291 |
color: var(--meteorite-dark) !important; |
| 292 |
} |
| 293 |
} |
| 294 |
.text-title-1 { |
| 295 |
font-size: 40px; |
| 296 |
font-weight: 700; |
| 297 |
line-height: 48px; |
| 298 |
} |
| 299 |
.text-title-2 { |
| 300 |
font-size: 36px; |
| 301 |
font-weight: 700; |
| 302 |
line-height: 40px; |
| 303 |
} |
| 304 |
.text-title-3 { |
| 305 |
font-size: 32px; |
| 306 |
font-style: normal; |
| 307 |
font-weight: 700; |
| 308 |
} |
| 309 |
.text-heading-1 { |
| 310 |
font-size: 24px; |
| 311 |
font-weight: 700; |
| 312 |
line-height: 32px; |
| 313 |
} |
| 314 |
.text-heading-2 { |
| 315 |
font-size: 20px; |
| 316 |
font-weight: 700; |
| 317 |
line-height: 32px; |
| 318 |
} |
| 319 |
.text-heading-3 { |
| 320 |
font-size: 16px; |
| 321 |
font-weight: 700; |
| 322 |
line-height: 24px; |
| 323 |
} |
| 324 |
.text-bold-1 { |
| 325 |
font-size: 16px; |
| 326 |
font-weight: 700; |
| 327 |
line-height: 24px; |
| 328 |
} |
| 329 |
.text-bold-2 { |
| 330 |
font-size: 14px; |
| 331 |
font-weight: 700; |
| 332 |
line-height: 24px; |
| 333 |
} |
| 334 |
.text-bold-3 { |
| 335 |
font-size: 12px; |
| 336 |
font-weight: 700; |
| 337 |
line-height: 20px; |
| 338 |
} |
| 339 |
.text-body-1 { |
| 340 |
font-size: 16px; |
| 341 |
font-weight: 400; |
| 342 |
line-height: 24px; |
| 343 |
color: var(--text_gray); |
| 344 |
} |
| 345 |
.text-body-2 { |
| 346 |
font-size: 14px; |
| 347 |
font-weight: 400; |
| 348 |
line-height: 24px; |
| 349 |
color: var(--text_gray); |
| 350 |
} |
| 351 |
.text-body-3 { |
| 352 |
font-size: 12px; |
| 353 |
font-weight: 400; |
| 354 |
line-height: 20px; |
| 355 |
color: var(--text_gray); |
| 356 |
} |
| 357 |
.text-button-1 { |
| 358 |
font-size: 16px; |
| 359 |
font-weight: 700; |
| 360 |
line-height: 24px; |
| 361 |
} |
| 362 |
.text-button-2 { |
| 363 |
font-size: 14px; |
| 364 |
font-weight: 700; |
| 365 |
line-height: 24px; |
| 366 |
} |
| 367 |
.text-button-3 { |
| 368 |
font-size: 12px; |
| 369 |
font-weight: 700; |
| 370 |
line-height: 20px; |
| 371 |
} |
| 372 |
.text-crossed-1 { |
| 373 |
font-size: 14px; |
| 374 |
font-weight: 400; |
| 375 |
line-height: 24px; |
| 376 |
text-decoration: line-through; |
| 377 |
} |
| 378 |
.text-crossed-2 { |
| 379 |
font-size: 12px; |
| 380 |
font-weight: 400; |
| 381 |
line-height: 20px; |
| 382 |
text-decoration: line-through; |
| 383 |
} |
| 384 |
.text-caption { |
| 385 |
font-size: 12px; |
| 386 |
font-weight: 400; |
| 387 |
line-height: 12px; |
| 388 |
} |
| 389 |
.text-overline { |
| 390 |
font-size: 12px; |
| 391 |
font-weight: 700; |
| 392 |
line-height: 16px; |
| 393 |
text-transform: uppercase; |
| 394 |
} |
| 395 |
.text-link-1 { |
| 396 |
font-size: 16px; |
| 397 |
font-weight: 400; |
| 398 |
line-height: 24px; |
| 399 |
color: var(--primary); |
| 400 |
text-decoration: underline; |
| 401 |
} |
| 402 |
.text-link-2 { |
| 403 |
font-size: 14px; |
| 404 |
font-weight: 400; |
| 405 |
line-height: 24px; |
| 406 |
color: var(--primary); |
| 407 |
text-decoration: underline; |
| 408 |
} |
| 409 |
.text-link-3 { |
| 410 |
font-size: 12px; |
| 411 |
font-weight: 400; |
| 412 |
line-height: 20px; |
| 413 |
color: var(--primary); |
| 414 |
text-decoration: underline; |
| 415 |
} |
| 416 |
|