Presented by: Fred Willerup
- Development is about balance
- API-first (or Spec-first) as a methodology
- Swagger issues
- Swagger errors aren't very helpful
- Lot's of duplicate code in the spec
- Enable CORs in Node app
Presented by: Fred Willerup
Presented by: Sean Timm
Presented by: Dom Ramirez
Since we won't be dropping Photoshop entirely out of our workflow (anytime soon), Layer Comps are something we should leverage to ease the designer/developer workflow.
| html { | |
| box-sizing: border-box; | |
| } | |
| *, *:before, *:after { | |
| box-sizing: inherit; | |
| } |
| /* All credit to Chris Coyier - via: https://css-tricks.com/snippets/css/clear-fix */ | |
| .selector:after { | |
| content: ""; | |
| display: table; | |
| clear: both; | |
| } |
| find . -name "*.orig" -delete |
| // Alerts | |
| @include alert-variant($background, $border, $text-color); | |
| // Background Variant | |
| @include bg-variant($parent, $color); | |
| // Border Radius | |
| @include border-top-radius($radius); | |
| @include border-right-radius($radius); | |
| @include border-bottom-radius($radius); |
| // Gradients | |
| // Horizontal gradient, from left to right | |
| // | |
| // Creates two color stops, start and end, by specifying a color and position for each color stop. | |
| // Color stops are not available in IE9 and below. | |
| @mixin gradient-horizontal($start-color: #555, $end-color: #333, $start-percent: 0%, $end-percent: 100%) { | |
| background-image: -webkit-linear-gradient(left, $start-color $start-percent, $end-color $end-percent); // Safari 5.1-6, Chrome 10+ |
| /* | |
| * Flexbox grid SCSS library | |
| * Author: Roman Hargrave | |
| * License: ASL 2.0 | |
| * The smallest grid system ever designed? | |
| * */ | |
| @mixin flex-grid($classname: 'flexg', $columns: 16, $gutter: 0, $col-gutter: 10px) { | |
| $column_name-format: #{$classname}-c-; |