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.14) | |
| // Compass (v0.12.2) | |
| // ---- | |
| $a: (foo bar, baz ban); | |
| test a { | |
| list-a: $a; | |
| type: type-of($a); | |
| } |
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.14) | |
| // Compass (v0.12.2) | |
| // Bootstrap Sass (v3.1.0.2) | |
| // ---- | |
| @import "bootstrap"; | |
| .bip_control{ | |
| @extend .form-control; | |
| color:red; |
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="foo"></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
| // ---- | |
| // Sass (v3.2.14) | |
| // Compass (v0.12.2) | |
| // ---- | |
| $number-of-columns: 12; | |
| %all-columns { | |
| display: block; | |
| } |
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.14) | |
| // Compass (v0.12.2) | |
| // ---- | |
| @mixin padding($params...) { | |
| $output: (); | |
| $n: length($params); | |
| @for $i from 1 through if( $n < 4, $n , 4) { | |
| $var: nth($params,$i) * $spacer; |
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.14) | |
| // Compass (v0.12.2) | |
| // ---- | |
| @mixin padding($params...) { | |
| $output: (); | |
| @each $var in $params { | |
| $var: $var * $spacer; | |
| $output: join( $output, $var ); |
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.0.rc.2) | |
| // Compass (v1.0.0.alpha.17) | |
| // ---- | |
| @mixin make_progress($val,$col){ | |
| progress[value="#{$val}"] { | |
| color: #{$col}; | |
| &::-webkit-progress-value { background-color: #{$col}; } | |
| &::-moz-progress-bar { background-color: #{$col}; } |
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.14) | |
| // Compass (v0.12.2) | |
| // ---- | |
| @mixin make_progress($val,$col){ | |
| progress[value="#{$val}"] { | |
| color: #{$col}; | |
| &::-webkit-progress-value { background-color: #{$col}; } | |
| &::-moz-progress-bar { background-color: #{$col}; } |
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.0.rc.2) | |
| // Compass (v1.0.0.alpha.17) | |
| // ---- | |
| @mixin themify($element, $property, $color-light: false) { | |
| $pages: (); | |
| @if $color-light == "true" { | |
| $pages: home forestGreen, about darkOrange, work dodgerBlue, contact fireBrick; | |
| } |
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.0.rc.2) | |
| // Compass (v1.0.0.alpha.17) | |
| // ---- | |
| $a: 1 2 3 4; | |
| $b: 2 3 4; | |
| @function matrix($a, $b) { | |
| $c: (); |