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 (v0.7.0) | |
| // ---- | |
| $icons: (mail '\e600') (facebook '\e601') (twitter '\e602') (youtube '\e603') (linkedin '\e604'); | |
| %ico-font-base { | |
| font-family: 'icomoon'; | |
| speak: none; | |
| font-style: normal; |
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 (v0.7.0) | |
| // ---- | |
| @import "bourbon/bourbon"; | |
| /*calculator*/ | |
| @mixin calc ($attr, $value, $tb-property: null, $percent: 100%, $operator: '-') { | |
| @if $tb-property == 0 { |
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.3.4) | |
| // Compass (v1.0.0.alpha.18) | |
| // ---- | |
| @mixin van($selector: '.seats') { | |
| color: black; | |
| windows: tinted; | |
| license: texas; | |
| @if $selector == '.seats' { |
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
| <span class="inset-one">ello</span> | |
| <span class="inset-two">arry</span> | |
| <span class="inset-3">potter</span> |
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 (v0.7.0) | |
| // ---- | |
| @mixin spans($args) { | |
| $columns: $args; | |
| $col-val: length($columns); | |
| @for $i from 1 through $col-val { | |
| .span-#{nth($columns, $i)} { |
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 (v0.7.0) | |
| // ---- | |
| // common @each loop | |
| /*-----------------------------------------*/ | |
| $icons: as bs cs; | |
| @each $icon in $icons { | |
| .icon-#{$icon} { | |
| background-image: url(/images/icons/#{icon}.png); |
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.3.4) | |
| // Compass (v1.0.0.alpha.18) | |
| // Bourbon (v) | |
| // ---- | |
| @import "bourbon/bourbon"; | |
| $columns: one two three; | |
| $length: length($columns); |
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.3.4) | |
| // Compass (v1.0.0.alpha.18) | |
| // ---- | |
| @function em($target, $context: $default-font-size) { | |
| $foo: $target / $context * 1em; | |
| @return $foo; | |
| } |
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.3.4) | |
| // Compass (v1.0.0.alpha.18) | |
| // ---- | |
| $var: bar; | |
| %default-core-brick-ui { | |
| foo: bar; | |
| car: black; |
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.3.4) | |
| // Compass (v1.0.0.alpha.18) | |
| // Stipe (v) | |
| // ---- | |
| @import "stipe/manifest"; | |
| h1 { | |
| @include heading; |