-
-
Save DKunin/6492172 to your computer and use it in GitHub Desktop.
Stylus 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
// MIXINS | |
vendor(prop, args) | |
-webkit-{prop} args | |
-moz-{prop} args | |
-o-{prop} args | |
{prop} args | |
animation() | |
vendor('animation', arguments) | |
border-radius() | |
vendor('border-radius', arguments) | |
border-top-radius() | |
vendor('border-top-left-radius', arguments) | |
vendor('border-top-right-radius', arguments) | |
border-top-radius() | |
vendor('border-bottom-left-radius', arguments) | |
vendor('border-bottom-right-radius', arguments) | |
linear-gradient(start_color, end_color, start = left top, end = left bottom) | |
mozstart = top if start = left top | |
background start_color | |
background -moz-linear-gradient(mozstart, start_color 0%, end_color 100%) | |
background -webkit-gradient(linear, start, end, color-stop(0%, start_color), color-stop(100%, end_color)) | |
-webkit-background-origin padding-box | |
background-clip() | |
vendor('background-clip', arguments) | |
box-shadow() | |
-moz-box-shadow arguments | |
-webkit-box-shadow arguments | |
box-shadow arguments | |
box(orient, pack, align) | |
display -webkit-box | |
display -moz-box | |
display box | |
vendor('box-orient', orient) | |
vendor('box-pack', pack) | |
vendor('box-align', align) | |
vendor('box-lines', multiple) | |
box_flex() | |
vendor('box-flex', arguments) | |
text-fill-color() | |
vendor('text-fill-color', arguments) | |
transition() | |
vendor('transition', arguments) | |
transform() | |
vendor('transform', arguments) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment