Advertisement
Guest User

Untitled

a guest
Jan 25th, 2015
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. @mixin linear-gradient($from, $to) {
  2. /* Fallback for sad browsers */
  3. background-color: $to;
  4. /* Mozilla Firefox */
  5. background-image: -moz-linear-gradient($from, $to);
  6. /* Opera */
  7. background-image: -o-linear-gradient($from, $to);
  8. /* WebKit (Chrome 11+) */
  9. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, $from), color-stop(1, $to));
  10. /* WebKit (Safari 5.1+, Chrome 10+) */
  11. background-image: -webkit-linear-gradient($from, $to);
  12. /* IE10 */
  13. background-image: -ms-linear-gradient($from, $to);
  14. /* W3C */
  15. background-image: linear-gradient($from, $to);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement