|
| 1 | +@charset "UTF-8"; |
| 2 | + |
| 3 | +/* VARIABLES -------------------------------------------------------------- */ |
| 4 | + |
| 5 | +:root { |
| 6 | + --heading-font: 'Open Sans', sans-serif; |
| 7 | + --main-font: 'Open Sans', sans-serif; |
| 8 | + --minor-font: 'Open Sans', sans-serif; |
| 9 | + --heading-color: rgba(0,0,50,.9); |
| 10 | + --main-color: rgba(70,70,90,.9); |
| 11 | + --minor-color: rgb(190,190,200); |
| 12 | + --emphasis-color: rgb(27,211,165); |
| 13 | +} |
| 14 | + |
| 15 | +/* DEFAULTS --------------------------------------------------------------- */ |
| 16 | + |
| 17 | +html { |
| 18 | + color: var(--main-color); |
| 19 | + font-family: var(--main-font); |
| 20 | + font-size: 16px; |
| 21 | + font-weight: 400; |
| 22 | +} |
| 23 | + |
| 24 | +/* TYPOGRAPHY ------------------------------------------------------------- */ |
| 25 | + |
| 26 | +.primary-heading { |
| 27 | + color: var(--heading-color); |
| 28 | + font-family: var(--heading-font); |
| 29 | + font-size: 2rem; |
| 30 | + font-weight: 400; |
| 31 | +} |
| 32 | + |
| 33 | +.highlight-text { |
| 34 | + color: var(--emphasis-color); |
| 35 | +} |
| 36 | + |
| 37 | +/* LINKS & BUTTONS -------------------------------------------------------- */ |
| 38 | + |
| 39 | +/* LAYOUT ----------------------------------------------------------------- */ |
| 40 | + |
| 41 | +.content { |
| 42 | + border: solid 1px pink; |
| 43 | + margin: 25px 0 50px 0; |
| 44 | +} |
| 45 | + |
| 46 | +.another { |
| 47 | + width: 100px; |
| 48 | + height: 100px; |
| 49 | + background: tomato; |
| 50 | + position: relative; |
| 51 | + left: 20px; |
| 52 | + top: 20px; |
| 53 | + z-index: 2; |
| 54 | +} |
| 55 | +/* COMPONENTS ------------------------------------------------------------- */ |
| 56 | + |
| 57 | +.thing { |
| 58 | + position: relative; |
| 59 | +} |
| 60 | + |
| 61 | +.thing.isolated { |
| 62 | + isolation: isolate; |
| 63 | +} |
| 64 | + |
| 65 | +.thing__one { |
| 66 | + width: 100px; |
| 67 | + height: 100px; |
| 68 | + background: orange; |
| 69 | + position: absolute; |
| 70 | + left: 0; |
| 71 | + top: 0; |
| 72 | + z-index: 1; |
| 73 | +} |
| 74 | + |
| 75 | +.thing__two { |
| 76 | + width: 100px; |
| 77 | + height: 100px; |
| 78 | + background: blueviolet; |
| 79 | + position: absolute; |
| 80 | + left: 40px; |
| 81 | + top: 40px; |
| 82 | + z-index: 3; |
| 83 | +} |
| 84 | +/* COSMETIC --------------------------------------------------------------- */ |
| 85 | + |
| 86 | +/* UTILITY ---------------------------------------------------------------- */ |
| 87 | + |
| 88 | +/* STATE ------------------------------------------------------------------ */ |
0 commit comments