_buttons.scss 784 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. .button,
  2. button,
  3. input[type="button"],
  4. input[type="reset"],
  5. input[type="submit"] {
  6. border: 2px solid white;
  7. outline: 4px solid $color__link;
  8. background: $color__link;
  9. color: white;
  10. @include font-size(.825);
  11. font-family: $font__headings;
  12. text-transform: uppercase;
  13. letter-spacing: 1px;
  14. font-weight: bold;
  15. line-height: 1;
  16. margin-right: .8em;
  17. padding: .8em 1.2em;
  18. position: relative;
  19. left: 4px;
  20. transition: 0.3s;
  21. text-decoration: none;
  22. &:hover,
  23. &:active,
  24. &:focus {
  25. outline-color: $color__text-screen;
  26. background-color: $color__text-screen;
  27. color: white;
  28. }
  29. }
  30. .button {
  31. display: inline-block;
  32. &:hover,
  33. &:focus,
  34. &:active {
  35. outline: 4px solid $color__text-screen;
  36. }
  37. }
  38. .mejs-controls .mejs-play button,
  39. .mejs-controls .mejs-mute button {
  40. outline: none;
  41. }