buttons.css.scss 625 B

1234567891011121314151617181920212223242526272829303132333435
  1. @import "colors/variables";
  2. .button {
  3. border: none;
  4. font-family: inherit;
  5. font-size: inherit;
  6. padding: 10px 8px;
  7. display: inline-block;
  8. text-transform: uppercase;
  9. letter-spacing: 1px;
  10. outline: none;
  11. position: relative;
  12. background: $base;
  13. box-shadow: 0 4px darken($base, 20%);
  14. }
  15. .button:after {
  16. position: absolute;
  17. z-index: -1;
  18. -webkit-transition: all 0.3s;
  19. -moz-transition: all 0.3s;
  20. transition: all 0.3s;
  21. }
  22. .button:hover {
  23. box-shadow: 0 6px darken($base, 25%);
  24. top: -2px;
  25. }
  26. .button:active {
  27. box-shadow: 0 0 darken($base, 25%);
  28. top: 6px;
  29. }