Advertisement
sonars

Untitled

Jul 9th, 2014
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.88 KB | None | 0 0
  1. .footer {
  2.     width: 100%;
  3.     z-index: 99999;
  4.     position: relative;
  5.     bottom: 0;
  6.     overflow: hidden;
  7.     margin: 0;
  8.     padding: 0;
  9.     background: #121e2e;
  10.     background: -moz-linear-gradient(top,  #121e2e 0%, #19283b 100%);
  11.     background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#121e2e), color-stop(100%,#19283b));
  12.     background: -webkit-linear-gradient(top,  #121e2e 0%,#19283b 100%);
  13.     background: -o-linear-gradient(top,  #121e2e 0%,#19283b 100%);
  14.     background: -ms-linear-gradient(top,  #121e2e 0%,#19283b 100%);
  15.     background: linear-gradient(to bottom,  #121e2e 0%,#19283b 100%);
  16.     filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#121e2e', endColorstr='#19283b',GradientType=0 );
  17.     border-top: 1px #0b131d solid;
  18.     -webkit-box-shadow: inset 0 2px 0 rgba(0,0,0,0.2);
  19.     -moz-box-shadow: inset 0 2px 0 rgba(0,0,0,0.2);
  20.     box-shadow: inset 0 2px 0 rgba(0,0,0,0.2);
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement