Sass / scss

SASS / SCSS

SASS: We have extended css to make it DRY

Bitters: We have a clear folder structure for you

Quote: After some time of getting used to it, you'll appreciate Bitters more and more: its default structure suggests a place for almost everything. Especially when working in a team, it's great to simply know where things are defined - instead of having to search and wonder.

cheat sheets

DONE

TODO: css animations and pseudo-classes!

media queries for responsive design

some funky css stuff

speed ups - achieving 60fps animations

architecture of CSS (for large scale maintainability)

mixins ref

pseudo classes

SASS Neat 2.0

tutorials!

watch a scss file (autocompile into css)

sass --watch input_file.scss:output_file.css

variables

$font-stack: Helvetica, sans-serif;

$primary-color: #333;

body {
  font: 100% $font-stack;
  color: $primary-color;
}

shorthand in css

sass has FUNCTIONS

how to perform vertical centering

other tips and tricks (css)

bourbon neat and bitters (library, library, scaffold/project template)

bourbon01

bourbon02