buttons.css.css 938 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. .btn.btn-black {
  2. background-color: #34302d;
  3. background-image: none;
  4. border-radius: 0;
  5. color: #f1f1f1;
  6. font-size: 14px;
  7. line-height: 14px;
  8. font-family: "Montserrat", sans-serif;
  9. border: 2px solid #6db33f;
  10. padding: 21px 60px;
  11. text-shadow: none;
  12. transition: border 0.15s;
  13. -webkit-transition: border 0.15s;
  14. -moz-transition: border 0.15s;
  15. -o-transition: border 0.15s;
  16. -ms-transition: border 0.15s;
  17. }
  18. .btn.btn-black.sub-text {
  19. padding: 12px 0;
  20. }
  21. .btn.btn-black.sub-text p {
  22. margin-top: 6px;
  23. color: #eeeeee;
  24. font-size: 14px;
  25. line-height: 14px;
  26. font-family: "Montserrat", sans-serif;
  27. text-transform: none;
  28. }
  29. .btn.btn-black:hover {
  30. border-color: #34302d;
  31. box-shadow: none;
  32. text-decoration: none;
  33. }
  34. .btn.btn-black:active {
  35. box-shadow: inset 0 3px 6px #0b0a0a;
  36. border-color: #34302d;
  37. }
  38. .btn.uppercase {
  39. text-transform: uppercase;
  40. }