Advertisement
Guest User

Untitled

a guest
Jan 29th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. .button {
  2. display: inline-block;
  3. padding: 5px 15px;
  4. font-size: 16px;
  5. cursor: pointer;
  6. text-align: center;
  7. text-decoration: none;
  8. outline: none;
  9. color: #fff;
  10. background-color: blue;
  11. border: none;
  12. border-radius: 15px;
  13. box-shadow: 0 9px #999;
  14. }
  15.  
  16. .button:hover {background-color: lightblue}
  17.  
  18. .button:active {
  19. background-color: blue;
  20. box-shadow: 0 5px #666;
  21. transform: translateY(4px);
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement