|
| 1 | +@import "../../main/css/index.css"; |
| 2 | +@import "superfly-css-utilities-icons"; |
| 3 | +@import "superfly-css-utilities-fonts"; |
| 4 | +@import "superfly-css-utilities-layout"; |
| 5 | +@import "superfly-css-component-site"; |
| 6 | +@import "superfly-css-component-test"; |
| 7 | +@import "superfly-css-foundation"; |
| 8 | +@import "superfly-css-utilities-effects"; |
| 9 | +@import "superfly-css-utilities-colors"; |
| 10 | + |
| 11 | +body { |
| 12 | + counter-reset: test-counter; |
| 13 | +} |
| 14 | + |
| 15 | +.Site { |
| 16 | + @apply(--Site); |
| 17 | + @apply(--u-background-color-soft-white); |
| 18 | +} |
| 19 | + |
| 20 | +.Site_header { |
| 21 | + @apply(--Site_header); |
| 22 | + @apply(--u-font-weight-200); |
| 23 | + @apply(--u-font-size-500); |
| 24 | + @apply(--u-flex); |
| 25 | + @apply(--u-flex-justify-around); |
| 26 | + @apply(--u-flex-align-items-center); |
| 27 | + @apply(--u-flex-align-items-center); |
| 28 | + @apply(--u-text-color-888); |
| 29 | +} |
| 30 | + |
| 31 | +.Test { |
| 32 | + @apply(--Test); |
| 33 | + @apply(--u-background-color-444); |
| 34 | +} |
| 35 | + |
| 36 | + |
| 37 | +.Test_when { |
| 38 | + @apply(--Test_when); |
| 39 | + @apply(--u-text-color-444); |
| 40 | +} |
| 41 | + |
| 42 | +.Test_then { |
| 43 | + @apply(--Test_when); |
| 44 | + @apply(--u-text-color-444); |
| 45 | +} |
| 46 | + |
| 47 | +.Test_description { |
| 48 | + @apply(--u-text-color-444); |
| 49 | +} |
| 50 | + |
| 51 | +.Test_markup { |
| 52 | + @apply(--u-text-color-tomato); |
| 53 | +} |
| 54 | + |
| 55 | +.Test_container { |
| 56 | + @apply(--Test_container); |
| 57 | + @apply(--u-background-color-silver-grey); |
| 58 | +} |
| 59 | + |
| 60 | +.Test_counter { |
| 61 | + @apply(--Test_counter); |
| 62 | + @apply(--u-text-color-tomato); |
| 63 | +} |
| 64 | + |
| 65 | + |
| 66 | +.Button--wut { |
| 67 | + border-radius: 4px; |
| 68 | + border: 1px solid #333; |
| 69 | + font-size: 1.5em; |
| 70 | + color: #fff; |
| 71 | + font-family: Helvetica; |
| 72 | + background-color: tomato; |
| 73 | + background-image: linear-gradient(tomato 0%, white 500%); |
| 74 | + text-shadow: 0 -1px 0 rgba(0, 0, 0, .5); |
| 75 | + box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset, 0 1px 3px rgba(0, 0, 0, .2); |
| 76 | + border: 1px solid #d7c6b3; |
| 77 | +} |
| 78 | + |
| 79 | +.Button--wut:active, .Button--wut:focus, .Button--wut:hover { |
| 80 | + background-color: #e0811b; |
| 81 | + background-image: linear-gradient(white 10%, tomato 200%); |
| 82 | + color: grey; |
| 83 | +} |
| 84 | + |
| 85 | +.Button:active, .Button:focus, .Button:hover { |
| 86 | + background-color: #555; |
| 87 | + color: grey; |
| 88 | +} |
0 commit comments