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
@mixin opacity($opacity) { | |
opacity: $opacity; | |
filter: alpha(opacity=#{$opacity * 100}); | |
} |
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
@mixin content-columns($columnCount, $columnGap: $gridGutterWidth) { | |
-webkit-column-count: $columnCount; | |
-moz-column-count: $columnCount; | |
column-count: $columnCount; | |
-webkit-column-gap: $columnGap; | |
-moz-column-gap: $columnGap; | |
column-gap: $columnGap; | |
} |
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
@mixin box-shadow($shadow) { | |
-webkit-box-shadow: $shadow; | |
-moz-box-shadow: $shadow; | |
box-shadow: $shadow; | |
} |
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
@mixin transition($transition) { | |
-webkit-transition: $transition; | |
-moz-transition: $transition; | |
-o-transition: $transition; | |
transition: $transition; | |
} |
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
@mixin rotate($degrees) { | |
-webkit-transform: rotate($degrees); | |
-moz-transform: rotate($degrees); | |
-ms-transform: rotate($degrees); | |
-o-transform: rotate($degrees); | |
transform: rotate($degrees); | |
} |
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
@mixin scale($ratio) { | |
-webkit-transform: scale($ratio); | |
-moz-transform: scale($ratio); | |
-ms-transform: scale($ratio); | |
-o-transform: scale($ratio); | |
transform: scale($ratio); | |
} |
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
@mixin translate($x, $y) { | |
-webkit-transform: translate($x, $y); | |
-moz-transform: translate($x, $y); | |
-ms-transform: translate($x, $y); | |
-o-transform: translate($x, $y); | |
transform: translate($x, $y); | |
} |
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
@mixin skew($x, $y) { | |
-webkit-transform: skew($x, $y); | |
-moz-transform: skew($x, $y); | |
-ms-transform: skew($x, $y); | |
-o-transform: skew($x, $y); | |
transform: skew($x, $y); | |
} |
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
@mixin translate3d($x, $y, $z) { | |
-webkit-transform: translate3d($x, $y, $z); | |
-moz-transform: translate3d($x, $y, $z); | |
-o-transform: translate3d($x, $y, $z); | |
transform: translate3d($x, $y, $z); | |
} |
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
@mixin border-radius($radius) { | |
-webkit-border-radius: $radius; | |
-moz-border-radius: $radius; | |
border-radius: $radius; | |
} |