This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//// | |
/// A DRY but flexible pattern for defining and reusing Sass patterns. | |
/// Documentation in [SassDoc](http://sassdoc.com/) format | |
/// | |
/// Instructions: | |
/// 1) Replace all instances of `hybrid-mixin` with a pattern name. | |
/// 2) Add rules for pattern in `__hybrid-mixin-rules` mixin. | |
/// 3) Remove or change @group below. | |
/// 4) Remove @author or change to you. | |
/// 5) The `@ignore` below should remain as a reference to this pattern. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"autoprefixer": "^6.4.1", | |
"ember-browserify": "^1.1.13", | |
"ember-cli-fastboot": "1.0.0-beta.9", | |
"ember-cli-postcss": "3.0.4", | |
"ember-cli-sass-pods": "1.3.0", | |
"ember-link-action": "0.0.35", | |
"ember-remarkable": "3.1.2", | |
"ember-router-scroll": "git+ssh://[email protected]/thejase/ember-router-scroll.git#master", | |
"eqcss": "^1.2.2", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"folders": | |
[ | |
// add paths per directory you want to show | |
{ | |
// relative paths to the root | |
"path": ".", | |
// optionally give it a different name | |
// "name": "My Project", | |
// possible folders to exclude |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// options | |
// identifier for theme CSS custom properties (e.g. --theme__prop--theme-name) | |
$__theme-custom-property-prefix: theme !default; | |
// enable/disable CSS4 var(--custom-property) declarations | |
$__theme-enable-css-variables: true !default; | |
// enable/disable compatibility for legacy browsers. | |
// Warning: If enabled, cascade will not function, so you must inherit down | |
// the chain or re-declare themes where needed | |
$__theme-enable-decorator-fallbacks: true !default; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// Helper for EQCSS Element Queries `@element` | |
/// | |
/// @author Jason Featheringham | |
/// @link https://gist.github.com/thejase/d2107285b6e10315dd6bc055115647fe Code source | |
/// @link http://elementqueries.com/ Plugin to parse EQCSS | |
/// @link https://gist.github.com/tomhodgins/6237039fa07c2e4b7acd1c8b0f9549a9 EQCSS syntax | |
/// | |
/// @param {String} $scope (&) - Optional scope. Defaults to current context | |
/// @param {List} $conditions (()) - 1+ of Maps of EQCSS conditions | |
/// @content rules to enclose in element query |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// handoff mixin variables for use inside content | |
$batons: () !default; | |
/// get the last set of variables handed-off | |
/// @param $baton=() map of variables | |
/// @example calling from inside a handoff-enabled mixin with content block | |
/// @mixin foo($foo, $free) { | |
/// | |
/// // send handoff right before `@content` | |
/// @include handoff(( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$colors: ( | |
abbey: #4c4f56, | |
acadia: #1b1404, | |
acapulco: #7cb0a1, | |
aero-blue: #c9ffe5, | |
affair: #714693, | |
akaroa: #d4c4a8, | |
alabaster: #fafafa, | |
albescent-white: #f5e9d3, | |
algae-green: #93dfb8, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* resets box-model reset */ | |
.pd-foo { | |
margin: 0; | |
padding: 0; | |
border-width: 0; | |
background-color: #ddd; | |
margin-left: 1em; | |
} | |
.pd-bar { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// grid layout | |
@include with-grid-settings( $columns: 12, $width: 58px, $gutter: 24px, $padding: 24px ) { | |
.pdp { | |
@include susy-grid-background; | |
@include container; | |
> .breadcrumbs { | |
@include span-columns( 12 ); | |
} | |
} |