Advertisement
itskrystalized

bonus button css

Jun 20th, 2015
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.88 KB | None | 0 0
  1. <style type="text/css">
  2. withbutton a:link, withbutton a:visited { /* a gomb kinézete */
  3.   font-family: Century Gothic;
  4.   font-size: 18px;
  5.   font-weight: solid;
  6.   font-style: normal;
  7.   backround-color: #ffffff;
  8.   color: #000000;
  9.   text-align: center;
  10.   width: 200px;
  11.   letter-spacing: 0px;
  12.   padding: 10px;
  13.   text-transform: uppercase;
  14.   border: 5px double #000000;
  15.   -webkit-transition: .5s ease-in;
  16.   -moz-transition: .5s ease-in;
  17.   -o-transition: .5s ease-in;
  18. }
  19.  
  20. withbutton a:hover, withbutton a:active { /* aktív gomb kinézete */
  21.   font-family: Century Gothic;
  22.   font-size: 18px;
  23.   font-weight: solid;
  24.   font-style: normal;
  25.   backround-color: #000000;
  26.   color: #ffffff;
  27.   text-align: center;
  28.   width: 200px;
  29.   letter-spacing: 5px;
  30.   text-transform: uppercase;
  31.   border: 5px double #ffffff;
  32.   padding: 10px;
  33.   box-shadow:inset 0px 100px 0px #000000;
  34. }
  35. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement