This file contains 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
bower_components/**/coffee | |
bower_components/**/grunt | |
bower_components/**/docs | |
bower_components/**/docs/js | |
bower_components/**/examples | |
bower_components/**/shared | |
bower_components/**/unit | |
bower_components/**/demo | |
bower_components/**/demos | |
bower_components/**/feature-detects |
This file contains 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
requirejs.config({ | |
paths: { | |
comscoreLib: 'https://sb.scorecardresearch.com/beacon' | |
}, | |
shim: { | |
comscoreLib: { | |
exports: "COMSCORE" | |
} | |
} | |
}); |
This file contains 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
// ---- | |
// Sass (v3.3.14) | |
// Compass (v1.0.0.rc.1) | |
// ---- | |
.blocker { | |
@at-root &__item{ | |
text-align: left | |
} | |
&--mo{ |
This file contains 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
.form { | |
@include e(field) {} | |
@include m(inline) {} | |
} | |
// or... | |
.form { | |
&__field {} | |
&--inline {} | |
} |
This file contains 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
// ---- | |
// Sass (v3.3.14) | |
// Compass (v1.0.1) | |
// ---- | |
// dude...lik | |
$var: 2px; | |
$doubled: $var * 2; | |
.foo { |
This file contains 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
// ---- | |
// Sass (v3.3.14) | |
// Compass (v1.0.1) | |
// ---- | |
// dude...lik | |
$var: 2px; | |
$doubled: $var * 2; | |
$divided: $var / 2; |
This file contains 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
// ---- | |
// Sass (v3.4.7) | |
// Compass (v1.0.1) | |
// ---- | |
.bem { | |
&__element { | |
color: red; | |
} | |
&--tall { |
This file contains 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
// ---- | |
// Sass (v3.4.7) | |
// Compass (v1.0.1) | |
// ---- | |
$fad-img--width: 940px; $fad-img--height: 724px; %inherit-font { color: #000; font-weight: normal; } .fad-landing__img { width: $fad-img--width; height: $fad-img--height; display: table; background-repeat: no-repeat; background-position: center; overflow: hidden; padding-top: 10px; .fad-landing__img__txt { display: table-cell; vertical-align: middle; padding: 120px 0 0 80px; p { @extend %inherit-font; } ul { margin: -15px 0 0 30px; line-height: 120%; & li { @extend %inherit-font; } } } } |
This file contains 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
var O = (function() { | |
var account = s_account || '', // <== fill this in with default s_account | |
instance = s || s_gi(account); | |
/** | |
* Description | |
* @method init | |
* @return | |
*/ |
This file contains 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
/* | |
// Usage: | |
gulp.task('docs', function(cb) { | |
gulp.src('path/to/your/src') | |
.pipe(hologram(cb)); | |
}); | |
*/ | |
var gulp = require('gulp'), | |
notify = require('gulp-notify'), |
OlderNewer