Created
November 14, 2013 03:47
-
-
Save carlos-sanchez/7461019 to your computer and use it in GitHub Desktop.
Mixins
This file contains 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
.gradient(@start, @end) { | |
background-color: mix(@start, @end); | |
*background-color: @end; | |
background-image: -moz-linear-gradient(top, @start, @end); | |
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(@start), to(@end)); | |
background-image: -webkit-linear-gradient(top, @start, @end); | |
background-image: -o-linear-gradient(top, @start, @end); | |
background-image: linear-gradient(to bottom, @start, @end); | |
background-repeat: repeat-x; | |
filter: ~"progid:DXImageTransform.Microsoft.gradient(startColorstr='@{start}', endColorstr='@{end}', GradientType=0)"; | |
filter: ~"progid:DXImageTransform.Microsoft.gradient(enabled=false)"; | |
} | |
.btn-border(@start, @end) { | |
border-color: @start @start darken(@end, 30%); | |
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); | |
} | |
.border-radius (@radius) { | |
-webkit-border-radius: @radius; | |
-moz-border-radius: @radius; | |
border-radius: @radius; | |
} | |
.border-radius(@topleft, @topright, @bottomright, @bottomleft) { | |
-webkit-border-top-left-radius: @topleft; | |
-webkit-border-top-right-radius: @topright; | |
-webkit-border-bottom-right-radius: @bottomright; | |
-webkit-border-bottom-left-radius: @bottomleft; | |
-moz-border-radius-topleft: @topleft; | |
-moz-border-radius-topright: @topright; | |
-moz-border-radius-bottomright: @bottomright; | |
-moz-border-radius-bottomleft: @bottomleft; | |
border-top-left-radius: @topleft; | |
border-top-right-radius: @topright; | |
border-bottom-right-radius: @bottomright; | |
border-bottom-left-radius: @bottomleft; | |
} | |
.text-shadow (@col) when (iscolor(@col)) { | |
text-shadow: 0px 0px 5px @col; | |
} | |
.text-shadow(@val) when (iskeyword(@val)) { | |
text-shadow: @val; | |
} | |
.opacity (@percent) { | |
opacity: @percent / 100; | |
filter: ~"alpha(opacity=@{percent})"; | |
} | |
.box-shadow (@shadow) { | |
-webkit-box-shadow: @shadow; | |
-moz-box-shadow: @shadow; | |
box-shadow: @shadow; | |
} | |
.transition(@props) { | |
-webkit-transition: @props; | |
-moz-transition: @props; | |
-ms-transition: @props; | |
-o-transition: @props; | |
transition: @props; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment