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
//defaults all corners to 3px. | |
=rounded_corners(!tleft = 3px , !tright = 3px , !bright = 3px , !bleft = 3px) | |
-moz-border-radius-topleft = !tleft | |
-moz-border-radius-topright = !tright | |
-moz-border-radius-bottomright = !bright | |
-moz-border-radius-bottomleft = !bleft | |
-webkit-border-top-left-radius = !tleft | |
-webkit-border-top-right-radius = !tright | |
-webkit-border-bottom-right-radius = !bright |
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
// !opacity should be passed in the x.x format | |
@mixin opacity($opacity) | |
:filter alpha(opacity: $opacity * 100) | |
:-moz-opacity = $opacity | |
:-khtml-opacity = $opacity | |
:opacity = $opacity |
NewerOlder