Advertisement
lswest

styles.css (for C&C)

Jul 5th, 2014
414
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.76 KB | None | 0 0
  1. /*!
  2.  * test
  3.  *
  4.  *
  5.  * @author Lucas Westermann
  6.  * @version 0.0.1
  7.  */
  8.  
  9. body {
  10.   background-color: white;
  11.   /* Fallback Color */
  12.   background-image: -webkit-gradient(linear, left top, left bottom, from(black), to(white));
  13.   /* Saf4+, Chrome */
  14.   background-image: -webkit-linear-gradient(top, black, white);
  15.   /* Chrome 10+, Safari 5.1+, iOS 5+ */
  16.   background-image: -moz-linear-gradient(top, black, white);
  17.   /* FF3.6+ */
  18.   background-image: -ms-linear-gradient(top, black, white);
  19.   /* IE10 */
  20.   background-image: -o-linear-gradient(top, black, white);
  21.   /* Opera 11.10+ */
  22.   background-image: linear-gradient(top, #000000, #ffffff);
  23.   filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='black', EndColorStr='white');
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement