Lightweight CSS Framework for Building Apps and Websites https://crispy-css.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
453 B

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. /**
  2. * button
  3. *
  4. *
  5. *
  6. * @author Björn Hase
  7. *
  8. */
  9. @mixin crispy-boilerplate-button() {
  10. .button {
  11. position: relative;
  12. display: inline-block;
  13. vertical-align: middle;
  14. appearance: none;
  15. &--wide {
  16. width: 100%;
  17. }
  18. &:hover {
  19. cursor: pointer;
  20. text-decoration: none;
  21. }
  22. &:focus {
  23. outline: none;
  24. }
  25. @content;
  26. }
  27. }