|
| 1 | +@charset "UTF-8"; |
| 2 | + |
| 3 | + |
| 4 | + |
| 5 | +/* VARIABLES -------------------------------------------------------------- */ |
| 6 | + |
| 7 | +:root { |
| 8 | + --heading-font: 'Open Sans', sans-serif; |
| 9 | + --main-font: 'Open Sans', sans-serif; |
| 10 | + --minor-font: 'Open Sans', sans-serif; |
| 11 | + --heading-color: rgba(0,0,50,.9); |
| 12 | + --main-color: rgba(70,70,90,.9); |
| 13 | + --minor-color: rgb(190,190,200); |
| 14 | + --emphasis-color: rgb(27,211,165); |
| 15 | +} |
| 16 | + |
| 17 | + |
| 18 | +/* DEFAULTS --------------------------------------------------------------- */ |
| 19 | + |
| 20 | +html { |
| 21 | + color: var(--main-color); |
| 22 | + font-family: var(--main-font); |
| 23 | + font-size: 16px; |
| 24 | + font-weight: 400; |
| 25 | +} |
| 26 | + |
| 27 | +body { |
| 28 | + max-width: 1000px; |
| 29 | +} |
| 30 | + |
| 31 | +/* TYPOGRAPHY ------------------------------------------------------------- */ |
| 32 | + |
| 33 | +.primary-heading { |
| 34 | + color: var(--heading-color); |
| 35 | + font-family: var(--heading-font); |
| 36 | + font-size: 2rem; |
| 37 | + font-weight: 400; |
| 38 | +} |
| 39 | + |
| 40 | +.highlight-text { |
| 41 | + color: var(--emphasis-color); |
| 42 | +} |
| 43 | + |
| 44 | +/* LINKS & BUTTONS -------------------------------------------------------- */ |
| 45 | + |
| 46 | +/* LAYOUT ----------------------------------------------------------------- */ |
| 47 | + |
| 48 | +/* COMPONENTS ------------------------------------------------------------- */ |
| 49 | + |
| 50 | +.video-content { |
| 51 | + width: 100%; |
| 52 | + padding-top: 56.25%; |
| 53 | + position: relative; |
| 54 | +} |
| 55 | + |
| 56 | +.video-content iframe { |
| 57 | + width: 100%; |
| 58 | + height: 100%; |
| 59 | + position: absolute; |
| 60 | + top: 0; |
| 61 | + left: 0; |
| 62 | +} |
| 63 | + |
| 64 | +/* COSMETIC --------------------------------------------------------------- */ |
| 65 | + |
| 66 | +/* UTILITY ---------------------------------------------------------------- */ |
| 67 | + |
| 68 | +/* STATE ------------------------------------------------------------------ */ |
0 commit comments