Guest User

Untitled

a guest
Jul 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. @mixin gradient($start-color: rgba(255, 255, 255, 0.3), $end-color: transparent) {
  2. background: $start-color; /* for non-css3 browsers */
  3. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$start-color}', endColorstr='#{$end-color}'); /* ie */
  4. background: -webkit-gradient(linear, left top, left bottom, from($start-color), to($end-color)); /* webkit */
  5. background: -moz-linear-gradient(top, $start-color, $end-color); /* ff */
  6. }
Add Comment
Please, Sign In to add comment