_button.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. // Styling for the Button
  2. /*====================================================
  3. BUTTON (Generic)
  4. ======================================================*/
  5. .btn-general {
  6. background-color: transparent;
  7. text-align: center;
  8. border-width: 1px;
  9. font-size: 16px;
  10. padding: 10px 15px;
  11. font-weight: 700;
  12. text-transform: uppercase;
  13. @include text-font;
  14. }
  15. .btn-white {
  16. border-color: $primary-col;
  17. background-color: $primary-col;
  18. color: $white;
  19. &:hover,
  20. &:focus {
  21. background-color: transparent;
  22. color: $primary-col;
  23. cursor: pointer;
  24. }
  25. }
  26. .btn-greenish-blue {
  27. border-color: $primary-col;
  28. color: $primary-col;
  29. &:hover,
  30. &:focus {
  31. background-color: $primary-col;
  32. color: $white;
  33. cursor: pointer;
  34. }
  35. }
  36. .heading-border {
  37. width: 100px;
  38. height: 5px;
  39. background-color: $primary-col;
  40. margin: 0 auto 20px auto;
  41. }
  42. .heading-border-light {
  43. width: 30px;
  44. height: 5px;
  45. background-color: $primary-col;
  46. margin: 0 0 20px 0;
  47. }