mirror of
https://github.com/seigler/dash-website
synced 2025-07-27 07:16:10 +00:00
37 lines
731 B
SCSS
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";
|