Created
April 26, 2014 20:34
-
-
Save pketh/11330353 to your computer and use it in GitHub Desktop.
core 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
.transition(@time) { | |
-webkit-transition: all @time; | |
-moz-transition: all @time; | |
-o-transition: all @time; | |
transition: all @time; | |
} | |
.line-height(@px) { | |
line-height: @px; | |
@rem: unit(@px, rem); | |
line-height: @rem / 16px; | |
} | |
.font-size(@px) { | |
font-size: @px; | |
@rem: unit(@px, rem); | |
font-size: @rem / 16; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment