dash-website/assets/css/style.scss
2016-08-08 10:24:53 -04:00

37 lines
731 B
SCSS

---
# this ensures Jekyll reads the file to be transformed into CSS later
# only Main files contain this front matter, not partials.
---
// stuff every page really needs
@import "reset";
@import "grid";
@import "colors";
@import "typography";
@import "layout";
@import "directives";
//stuff every page needs
@import "header";
@import "nav";
@import "buttons";
@import "forms";
@import "footer";
//stuff most pages need
@import "overlay-menu";
@import "video";
//styles for specific pages
@import "home";
@import "interior";
@import "post";
@import "junk-drawer";
@import "styleguide";
//responsive overrides
//TODO merge these back into the rest of the SCSS files
@import "1024";
@import "768";
@import "640";
@import "480";