Whether you use underscores or hyphens or mix and match.
by Ryan Allen on CodePen.
| $svg-path : "../../img/svg/"; | |
| body { | |
| background: url(#{$svg-path}astronaut-ryan.svg) repeat-x fixed 0 0; | |
| } |
Whether you use underscores or hyphens or mix and match.
by Ryan Allen on CodePen.
| .scene__adventure { | |
| @include scene; | |
| background: { /// : needs to replace the - for nested properties | |
| color: $blue20; | |
| image: url(#{$svg-path}space-adventure__stars.svg); | |
| } | |
| } |
| @mixin corners($corner...) { | |
| border-radius: $corner; | |
| } | |
| .round-corners {@include corners(1rem 1em 1vw 1vmin);} | |
| /// compiles to: | |
| /// | |
| /// .round-corners {border-radius: 1rem 1em 1vw 1vmin;} | |
| /// official docs: http://sass-lang.com/documentation/file.SASS_REFERENCE.html#variable_arguments |
| { | |
| "W": 512, | |
| "H": 512, | |
| "restore_faces": false, | |
| "tiling": false, | |
| "enable_hr": false, | |
| "firstphase_width": 0, | |
| "firstphase_height": 0, | |
| "seed": 2329578955, | |
| "sampler": "Euler a", |
Concept selection matrix is for ranking solutions against the right problems. Use the table below or this google sheet.
| Needs | Grouped concept 1 | Grouped concept 2 |
|---|---|---|
| Need 1.1 (main or sub or indv) | ||
| Need 1.2 | ||
| Need 2.1 (main or sub or indv) | ||
| Need 2.2 | ||
| Cost (difficulty) | ||
| Wow factor | ||
| Elegance & beauty |