buttons.css 991 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. .button{
  2. display: inline-block;
  3. padding: 11px 33px 14px;
  4. background-color: #F72464;
  5. box-shadow: 0px 4px 15px rgba(123, 12, 46, 0.35);
  6. border-radius: 4px;
  7. font-family: 'Playfair Display', serif;
  8. font-style: normal;
  9. font-weight: normal;
  10. font-size: 26px;
  11. line-height: 1;
  12. text-align: center;
  13. text-decoration: none;
  14. color: #FFFFFF;
  15. transition: box-shadow 0.2s ease-in background-color 0.2s ease-in;
  16. }
  17. .button:hover{
  18. box-shadow: 0px 4px 25px rgba(184, 13, 64, 0.671);
  19. background-color: #ff3874;
  20. }
  21. .button-outline{
  22. display: inline-block;
  23. padding: 10px 40px 11px;
  24. background: #FFFFFF;
  25. border: 1px solid #F72464;
  26. border-radius: 4px;
  27. font-family: 'Playfair Display', serif;
  28. font-style: normal;
  29. font-weight: normal;
  30. font-size: 16px;
  31. line-height: 1;
  32. text-align: center;
  33. text-transform: uppercase;
  34. color: #777777;
  35. text-decoration: none;
  36. transition: background-color 0.2s ease-in, color 0.2s ease-in ;
  37. }
  38. .button-outline:hover{
  39. background-color: #F72464;
  40. color: #fff;
  41. }