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

Untitled

By: a guest on Jun 27th, 2012  |  syntax: None  |  size: 0.71 KB  |  hits: 9  |  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. /**
  2.  * The first commented line is your dabblet’s title
  3.  */
  4.  
  5. body {
  6.         background: #EDEDED;
  7. }
  8.  
  9. h1 {   
  10.         font-size: 120px;
  11.         text-align: center;
  12.         font-family: Helvetica, Arial, sans-serif;
  13.         color: #E3E3E3;
  14.         text-shadow: -1px -1px 0px #D9D9D9, 1px 1px 0px #F9F9F9;
  15.         width: 500px;
  16.         margin: 150px auto;
  17.         cursor: pointer;
  18. }
  19.  
  20.  
  21. h1:hover {
  22.         background: linear-gradient(90deg, #3D85FE, #0068FF);
  23.         border-radius: 5px;
  24.         box-shadow: 0px 1px 0px #0068FF, 0px 15px 0px #0068FF, 0px 16px 1px #1A4997, 0px -2px 0px #3D85FE, 1px 0px 0px #1A4997,  -1px 0px 0px #1A4997;;
  25.         color: #fff;
  26. }
  27.  
  28.  
  29. h1:active {
  30.         transition: 0.1s linear;
  31.         margin-top: 160px;
  32.         box-shadow: 0px 1px 0px #0068FF, 0px 5px 0px #0068FF, 0px 6px 2px #1A4997, 0px -2px 0px #3D85FE;
  33. }