mirror of
https://github.com/danog/sass-site.git
synced 2024-12-13 01:47:44 +01:00
92 lines
2.0 KiB
SCSS
Executable File
92 lines
2.0 KiB
SCSS
Executable File
// ===========================================================================
|
|
// SASS STYLES
|
|
// by Team Sass Design (@teamsassdesign)
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// VENDOR
|
|
|
|
@import "compass";
|
|
@import "susy";
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// RESET
|
|
|
|
// http://paulirish.com/2012/box-sizing-border-box-ftw/
|
|
* { @include box-sizing(border-box); }
|
|
|
|
@import "vendor/normalize";
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// DEPENDENCIES
|
|
|
|
@import "dependencies/measurements";
|
|
@import "dependencies/typography";
|
|
@import "dependencies/icons";
|
|
@import "dependencies/color";
|
|
@import "dependencies/themes";
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// FOUNDATION
|
|
|
|
@import "foundation/site";
|
|
@import "foundation/links";
|
|
@import "foundation/headings";
|
|
@import "foundation/text";
|
|
@import "foundation/lists";
|
|
@import "foundation/media";
|
|
@import "foundation/code";
|
|
@import "foundation/forms";
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// COMPONENTS
|
|
|
|
@import "components/buttons";
|
|
@import "components/messages";
|
|
@import "components/introduction";
|
|
@import "components/quick_starts";
|
|
@import "components/illustrations";
|
|
@import "components/release_information";
|
|
@import "components/jump_navigation";
|
|
@import "components/sticky_footer";
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// LAYOUT
|
|
|
|
@import "layout/grid";
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// REGIONS
|
|
|
|
@import "regions/banner";
|
|
@import "regions/navigation";
|
|
@import "regions/main";
|
|
@import "regions/content_middle";
|
|
@import "regions/contentinfo";
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// HELPERS
|
|
|
|
@import "helpers";
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// PRINT
|
|
|
|
@import "print"; |