Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Sep 18th, 2012  |  syntax: None  |  size: 1.12 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. body {
  2.   margin: 0px;
  3.   overflow: hidden;
  4.  
  5.   background: -moz-radial-gradient(center, ellipse cover, rgba(205,235,142,1) 0%, rgba(165,201,86,1) 100%);
  6. background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(205,235,142,1)), color-stop(100%,rgba(165,201,86,1)));
  7. background: -webkit-radial-gradient(center, ellipse cover, rgba(205,235,142,1) 0%,rgba(165,201,86,1) 100%);
  8. background: -o-radial-gradient(center, ellipse cover, rgba(205,235,142,1) 0%,rgba(165,201,86,1) 100%);
  9. background: -ms-radial-gradient(center, ellipse cover, rgba(205,235,142,1) 0%,rgba(165,201,86,1) 100%);
  10. background: radial-gradient(ellipse at center, rgba(205,235,142,1) 0%,rgba(165,201,86,1) 100%);
  11. }
  12.  
  13. #start, #info {
  14.    width: 60px;
  15.   position: absolute;
  16.   top: 12px;
  17.   left: 10px;
  18.   background-color: rgba(0,0,0,0.7);
  19.   color: #fff;
  20.   height: 30px;
  21.   text-align: center;
  22.   line-height: 30px;
  23.   font-family: helvetica;
  24.   font-size: 12px;
  25.   border-radius: 3px;
  26.   cursor: pointer;
  27. }
  28.  
  29. #info {
  30.  width: 255px;
  31.  left: 80px;
  32.   cursor: default;
  33.   background-color: rgba(0,0,0,0.4);
  34. }
  35.  
  36. #start:hover {
  37.  background-color:  rgba(0,0,0,0.8);
  38. }