cloudflare/InstantPlugin
Publicmirrored fromhttps://github.com/cloudflare/InstantPlugin
app/index.styl
88lines · modecode
9 years ago
| 1 | @import "~normalize.css/normalize.css" |
| 2 | @import "~styl/fonts" |
| 3 | @import "~styl/buttons" |
| 4 | @import "~styl/more-links-and-buttons" |
| 5 | @import "~styl/loading-dots" |
| 6 | @import "~styl/form" |
| 7 | @import "~styl/inputs" |
| 8 | |
| 9 | *, *::after, *::before |
| 10 | box-sizing border-box |
| 11 | |
| 12 | baseFontSize = 16px |
| 13 | |
| 14 | html |
| 15 | background gray |
| 16 | color textColor |
| 17 | |
| 18 | html, body |
| 19 | width 100% |
| 20 | min-height 100vh |
| 21 | |
| 22 | body |
| 23 | overflow-y scroll |
| 24 | |
| 25 | svg |
| 26 | display block |
| 27 | width 100% |
| 28 | height 100% |
| 29 | |
| 30 | body |
| 31 | font-family sansSerifFonts |
| 32 | font-size baseFontSize |
| 33 | |
| 34 | div, footer, header, main, section |
| 35 | display flex |
| 36 | |
| 37 | [contenteditable] |
| 38 | div, footer, header, section |
| 39 | display block |
| 40 | |
| 41 | [data-flow="column"] |
| 42 | display flex |
| 43 | flex-flow column nowrap |
| 44 | |
| 45 | .step, form |
| 46 | > .actions |
| 47 | margin-top 2em |
| 48 | |
| 49 | .download-iframe |
| 50 | position fixed |
| 51 | z-index -99999 |
| 52 | visibility hidden |
| 53 | width 1px |
| 54 | height 1px |
| 55 | |
| 56 | |
| 57 | a.made-by.button |
| 58 | display block |
| 59 | width 6em |
| 60 | max-width 100% |
| 61 | padding 1.1em |
| 62 | text-align center |
| 63 | opacity 1 |
| 64 | transform translate3d(0, 0, 0) |
| 65 | transition opacity .3s ease |
| 66 | will-change opacity |
| 67 | background #ccc |
| 68 | box-shadow none |
| 69 | |
| 70 | > * |
| 71 | opacity .7 |
| 72 | |
| 73 | .label |
| 74 | display block |
| 75 | font-size .7em |
| 76 | font-weight 100 |
| 77 | text-transform uppercase |
| 78 | letter-spacing .1em |
| 79 | text-indent @letter-spacing |
| 80 | margin-bottom 1em |
| 81 | |
| 82 | svg |
| 83 | display block |
| 84 | width 100% |
| 85 | height auto |
| 86 | |
| 87 | path |
| 88 | fill currentColor |