Guest User

Untitled

a guest
Jul 17th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. .buttons {
  2. font-size: 22px;
  3. font-family: sans-serif;
  4. padding: 0 30px;
  5. background-color: #FFC61A;
  6. color: $text;
  7. border-radius: 5px;
  8. transition: all .5s ease;
  9. &:hover {
  10. background-color: darken(#FFC61A, 8%);
  11. text-decoration: none;
  12. color: #000;
  13. }
  14.  
  15. &:active {
  16. background-color: darken(#FFC61A, 8%);
  17. text-decoration: none;
  18. color: #000;
  19. }
  20.  
  21. &:focus {
  22. text-decoration: none;
  23. color: #000;
  24. outline: none;
  25.  
  26. }
  27. }
Add Comment
Please, Sign In to add comment