_social-buttons.scss 779 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // for social buttons
  2. @mixin social-buttons-color ($color, $state-color) {
  3. background-color: $color;
  4. color: $white;
  5. &:focus,
  6. &:hover {
  7. background-color: $state-color;
  8. color: $white;
  9. }
  10. &:active,
  11. &:focus,
  12. &:active:focus {
  13. box-shadow: none;
  14. }
  15. &.btn-simple {
  16. color: $state-color;
  17. background-color: transparent;
  18. background-image: none !important;
  19. box-shadow: none;
  20. border: none;
  21. &:hover,
  22. &:focus,
  23. &:hover:focus,
  24. &:active,
  25. &:hover:focus:active {
  26. color: $state-color;
  27. background: transparent !important;
  28. box-shadow: none !important;
  29. }
  30. }
  31. &.btn-neutral {
  32. color: $color;
  33. background-color: $white;
  34. &:hover,
  35. &:focus,
  36. &:active {
  37. color: $state-color;
  38. }
  39. }
  40. }