Advertisement
salmancreation

Awesome Button Transition

Dec 8th, 2014
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.57 KB | None | 0 0
  1. <button>Awesome Button</button>
  2.  
  3. body {
  4.   font: 600 14px/24px "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", Sans-Serif;
  5. }
  6. button {
  7.   border: 0;
  8.   background: #0087cc;
  9.   border-radius: 4px;
  10.   box-shadow: 0 5px 0 #006599;
  11.   color: #fff;
  12.   cursor: pointer;
  13.   font: inherit;
  14.   margin: 0;
  15.   outline: 0;
  16.   padding: 12px 20px;
  17.   transition: all .1s linear;
  18. }
  19. button:active {
  20.   box-shadow: 0 2px 0 #006599;
  21.   transform: translateY(3px);
  22. }
  23.  
  24.  
  25.  
  26. https://gist.github.com/anonymous/10fe2398b4300b4e7c5e
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement