Advertisement
Guest User

Untitled

a guest
Aug 29th, 2012
624
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.02 KB | None | 0 0
  1. .psGradient {
  2.    z-index: 2;
  3.    position: relative;
  4.    height: 50px;
  5.    margin-top: -50px;
  6.    overflow: hidden;
  7.    background: -moz-linear-gradient(
  8.      bottom,
  9.      rgb(255, 255, 255) 15%,
  10.      rgba(255, 255, 255, 0) 100%
  11.    );
  12.    background: -webkit-gradient(
  13.      linear,
  14.      bottom,
  15.      top,
  16.      color-stop(15%, rgb(255, 255, 255)),
  17.      color-stop(100%, rgba(255, 255, 255, 0))
  18.    );
  19.    background: -webkit-linear-gradient(
  20.      bottom,
  21.      rgb(255,255,255) 15%,
  22.      rgba(255, 255, 255, 0) 100%
  23.    );
  24.    background: -o-linear-gradient(
  25.      bottom,
  26.      rgb(255,255,255) 15%,
  27.      rgba(255, 255, 255, 0) 100%
  28.    );
  29.    background: -ms-linear-gradient(
  30.      bottom,
  31.      rgb(255,255,255) 15%,
  32.      rgba(255, 255, 255, 0) 100%
  33.    );
  34.    filter:
  35.      progid:DXImageTransform.Microsoft.gradient(
  36.      startColorstr='#03ffffff',
  37.      endColorstr='#ffffff', GradientType=0
  38.    );
  39.    background: linear-gradient(
  40.      bottom,
  41.      rgb(255, 255, 255) 15%,
  42.      rgba(255, 255, 255, 0) 100%
  43.    );
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement