_buttons.scss 467 B

12345678910111213141516171819202122232425262728
  1. @import "variables";
  2. .button {
  3. background: none;
  4. border: $default-border;
  5. position: relative;
  6. display: inline-block;
  7. padding: 7px 12px;
  8. margin: 0;
  9. width: auto;
  10. font-family: $wide-font-family;
  11. font-size: $button-font-size;
  12. text-transform: uppercase;
  13. cursor: pointer;
  14. text-align: left;
  15. text-decoration: none;
  16. letter-spacing: 2px;
  17. &:hover {
  18. background: $default-border-color;
  19. color: $white;
  20. }
  21. &:active {
  22. top: 1px;
  23. }
  24. }