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
// ---- | |
// Sass (v3.4.1) | |
// Compass (v1.0.1) | |
// ---- | |
$font-faces: ( | |
'Georgia-Italic': ('georgia_italic-webfont', 'normal', 'italic'), | |
'Glyph-Icon': 'glyphicons-halflings-regular', | |
'Helvetica-Neue': 'helveticaneue', | |
'Helvetica-Neue-Bold': ('helveticaneue-bold-webfont', 700), |
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
// ---- | |
// Sass (v3.4.1) | |
// Compass (v1.0.1) | |
// ---- | |
$font-faces: ( | |
'Helvetica-Neue': 'helveticaneue', | |
'Helvetica-Neue-Bold': ('helveticaneue-bold-webfont', 700), | |
'Helvetica-Neue-Medium': ('helveticaneue-medium-webfont', 500), | |
'Avant-Garde-Black': ('itcavantgardestd-bk-webfont', 700), |
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
// ---- | |
// Sass (v3.4.4) | |
// Compass (v1.0.1) | |
// ---- | |
$font-faces: ( | |
('Helvetica-Neue', 'helveticaneue'), | |
('Helvetica-Neue-Bold', 'helveticaneue-bold-webfont', 700), | |
('Helvetica-Neue-Medium', 'helveticaneue-medium-webfont', 500), | |
('Avant-Garde-Black', 'itcavantgardestd-bk-webfont', 700), |
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
// ---- | |
// libsass (v2.0.0) | |
// ---- | |
@import "sass-list-maps"; | |
@mixin respond-to($name) { | |
// If the key exists in the map | |
@if map-has-key($breakpoints, $name) { | |
// Prints a media query based on the value |
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
// ---- | |
// libsass (v3.0.1) | |
// ---- | |
@mixin displayTransition($selector, $time, $hidden: '', $visible: '') { | |
$hidden: if($hidden != '', ', ' + $hidden, $hidden); | |
$visible: if($visible != '', ', ' + $visible, $visible); | |
visibility: hidden; |
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
// ---- | |
// libsass (v3.1.0-beta) | |
// ---- | |
.parent { | |
&:hover { | |
@extend %child_hover; | |
} | |
} |
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
// ---- | |
// Sass (v3.2.19) | |
// Compass (v0.12.7) | |
// Sass List-Maps (v0.9.9) | |
// ---- | |
@import "sass-list-maps"; | |
@function is-list($value) { | |
@return if(length($value) > 1, true, false); |
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
// ---- | |
// libsass (v3.1.0-beta) | |
// ---- | |
@import "sass-list-maps"; | |
//////////////////////////////// | |
// Breakpoints | |
$breakpoints: ( | |
('small', ('min-width: 767px', 'max-width: 992px')), |
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
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
@function _length($number, $unit) { | |
$strings: 'px' 'cm' 'mm' '%' 'ch' 'pica' 'in' 'em' 'rem' 'pt' 'pc' 'ex' 'vw' 'vh' 'vmin' 'vmax'; | |
$units: 1px 1cm 1mm 1% 1ch 1pica 1in 1em 1rem 1pt 1pc 1ex 1vw 1vh 1vmin 1vmax; | |
$index: index($strings, $unit); | |
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
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
$colors: red blue yellow orange #b4da55; | |
@each $color in $colors { | |
.thing { | |
color: $color; |