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

Untitled

By: a guest on May 2nd, 2012  |  syntax: None  |  size: 0.91 KB  |  hits: 11  |  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. @charset "utf-8";
  2.  
  3. .button {
  4.         display: inline-block;
  5.         font-weight: bold;
  6.         text-decoration: none;
  7.         -moz-border-radius: 5px;
  8.         -webkit-border-radius: 5px;
  9.         border-radius: 5px;
  10.         border: 2px solid #E6EBF2;
  11.         padding: 7px 15px;
  12.         color: #ffffff;
  13.         background: #4971A0;
  14.         background: -moz-linear-gradient(
  15.                 center bottom,
  16.         #4971A0 0%,
  17.         #6A8EBB 80%,
  18.         #6A8EBB 100%
  19.         );
  20.         background: -webkit-gradient(
  21.         linear,
  22.         left 80%,
  23.         left top,
  24.         color-stop(0, #4971A0),
  25.         color-stop(1, #6A8EBB),
  26.         color-stop(1, #6A8EBB)
  27.         );
  28. }
  29.  
  30. .button:hover {
  31.         color: #ffffff;
  32.         border: 2px solid #F4F2A8;
  33.         background: #898612;
  34.         background: -moz-linear-gradient(
  35.                 center bottom,
  36.         #898612 0%,
  37.         #B3AE17 80%,
  38.         #B3AE17 100%
  39.         );
  40.         background: -webkit-gradient(
  41.         linear,
  42.         left 80%,
  43.         left top,
  44.         color-stop(0, #898612),
  45.         color-stop(1, #B3AE17),
  46.         color-stop(1, #B3AE17)
  47.         );
  48. }
  49.  
  50. .button:visited { color: #ffffff; }