Button.css 402 B

1234567891011121314151617181920212223242526
  1. .button {
  2. background: #fff;
  3. border: 1px solid #aaa;
  4. border-radius: 4px;
  5. cursor: pointer;
  6. display: inline-block;
  7. font: var(--main-font);
  8. outline: none;
  9. padding: 5px 7px;
  10. transition: background .3s ease;
  11. white-space: nowrap;
  12. }
  13. .button:focus,
  14. .button:hover {
  15. background: #ffefd7;
  16. }
  17. .button.active {
  18. background: #ffa500;
  19. color: #000;
  20. }
  21. .button[disabled] {
  22. cursor: default;
  23. }