Advertisement
Cyxo

CSS

Dec 29th, 2015
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.78 KB | None | 0 0
  1. html,body,div{
  2.   margin: 0;
  3.   padding: 0;
  4.   width: 98%;
  5.   height: 98%;
  6. }
  7. canvas{
  8.     z-index: 0 !important;
  9. }
  10. audio{
  11.   position: absolute;
  12.   z-index: 2;
  13.   top: 5px;
  14.   right: 5px;
  15. }
  16. #debug{
  17.   top: 5px;
  18.   left: 5px;
  19.   position: absolute;
  20.   color: white;
  21.   z-index: 3;
  22. }
  23. #skyday{position:absolute; left:0; top:0; z-index:-100; width:100%; height:100%;
  24.     background-image: linear-gradient(bottom, rgb(218,237,255) 27%, rgb(30,153,235) 81%);
  25. background-image: -o-linear-gradient(bottom, rgb(218,237,255) 27%, rgb(30,153,235) 81%);
  26. background-image: -moz-linear-gradient(bottom, rgb(218,237,255) 27%, rgb(30,153,235) 81%);
  27. background-image: -webkit-linear-gradient(bottom, rgb(218,237,255) 27%, rgb(30,153,235) 81%);
  28. background-image: -ms-linear-gradient(bottom, rgb(218,237,255) 27%, rgb(30,153,235) 81%);
  29.  
  30. background-image: -webkit-gradient(
  31.     linear,
  32.     left bottom,
  33.     left top,
  34.     color-stop(0.27, rgb(218,237,255)),
  35.     color-stop(0.81, rgb(30,153,235))
  36.         );}
  37.  
  38. #skynight{position:absolute; left:0; top:0; z-index:-100; width:100%; height:100%;
  39.     background: #080830; /* Old browsers */
  40. background: -moz-linear-gradient(top, #080830 20%, #08162a 100%); /* FF3.6+ */
  41. background: -webkit-gradient(linear, left top, left bottom, color-stop(20%,#080830), color-stop(100%,#08162a)); /* Chrome,Safari4+ */
  42. background: -webkit-linear-gradient(top, #080830 20%,#08162a 100%); /* Chrome10+,Safari5.1+ */
  43. background: -o-linear-gradient(top, #080830 20%,#08162a 100%); /* Opera 11.10+ */
  44. background: -ms-linear-gradient(top, #080830 20%,#08162a 100%); /* IE10+ */
  45. background: linear-gradient(to bottom, #080830 20%,#08162a 100%); /* W3C */
  46. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#080830', endColorstr='#08162a',GradientType=0 ); /* IE6-9 */
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement