Advertisement
Guest User

Untitled

a guest
Feb 20th, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. @import 'https://use.fontawesome.com/releases/v5.12.1/css/all.css';
  2.  
  3. a,
  4. button {
  5. cursor: pointer;
  6. outline: none;
  7. color: rgb(51, 51, 51);
  8.  
  9. }
  10.  
  11. a.button,
  12. button {
  13. background-color: rgb(251, 251, 251);
  14. color: rgb(51, 51, 51);
  15. border: 2px solid rgb(51, 51, 51);
  16. border-radius: 30px;
  17. padding: 10px;
  18. font-family: Verdana, Geneva, Tahoma, sans-serif;
  19. font-size: 16px;
  20. }
  21.  
  22. button.hover:hover {
  23. color: rgb(0, 102, 0);
  24. border-color: rgb(0, 102, 0);
  25.  
  26. }
  27.  
  28. a.button.fill,
  29. button.fill {
  30. background-color: rgb(51, 51, 51);
  31. color: rgb(251, 251, 251);
  32. }
  33.  
  34. button.fill.hover:hover {
  35. background-color: rgb(0, 102, 0);
  36. color: rgb(251, 251, 251);
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement