Last active
August 29, 2015 13:56
-
-
Save bryanerayner/9200953 to your computer and use it in GitHub Desktop.
Revisions
-
bryanerayner revised this gist
May 7, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -20,7 +20,7 @@ -ms-animation: slide 1s; animation: slide 1s; */ @mixin prefix($property, $value, $prefixes:(-webkit-,-moz-,-o-,-ms-'')) { @each $prefix in $prefixes { -
bryanerayner revised this gist
Feb 25, 2014 . 1 changed file with 14 additions and 14 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,24 +1,24 @@ /** Prefix - Prefixes a property with webkit, moz, or o. Usage: @include prefix(animation, slide 1s) Outputs: -webkit-animation: slide 1s; -moz-animation: slide 1s; -o-animation: slide 1s; animation: slide 1s; Want to forget Opera or use a different set of prefixes? @include prefix(animation, slide 1s, (-webkit-,-ms-)) Outputs: -webkit-animation: slide 1s; -ms-animation: slide 1s; animation: slide 1s; */ @mixin prefix($property, $value, $prefixes:(-webkit-,-moz-,-o-,'')) { -
bryanerayner created this gist
Feb 25, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,30 @@ /** Prefix - Prefixes a property with webkit, moz, or o. Usage: @include prefix(animation, slide 1s) outputs -webkit-animation: slide 1s; -moz-animation: slide 1s; -o-animation: slide 1s; animation: slide 1s; Want to forget opera or use a different set of prefixes? @include prefix(animation, slide 1s, (-webkit-,-ms-)) outputs -webkit-animation: slide 1s; -ms-animation: slide 1s; animation: slide 1s; */ @mixin prefix($property, $value, $prefixes:(-webkit-,-moz-,-o-,'')) { @each $prefix in $prefixes { #{$prefix}#{$property}: #{$value}; } #{$property}: #{$value}; }