_buttons.scss 545 B

12345678910111213141516171819202122232425262728293031
  1. .btn {
  2. &:focus {
  3. border-color: rgba(242, 206, 57, .8);
  4. box-shadow: 0 0 0 1px rgba(242, 206, 57, .8);
  5. }
  6. }
  7. .btn-theme-primary {
  8. background-color: $theme-color-dark;
  9. border-color: $theme-color-dark;
  10. color: white;
  11. &:hover {
  12. color: white;
  13. background-color: #69161d;
  14. border-color: #69161d;
  15. }
  16. }
  17. a.btn-icon {
  18. color: #000;
  19. }
  20. .btn-icon {
  21. display: inline-block;
  22. text-align: center;
  23. &:hover {
  24. .btn-text {
  25. text-decoration: underline;
  26. }
  27. }
  28. }