button.css 217 B

123456789101112131415161718
  1. .button {
  2. }
  3. .button--inline {
  4. all: unset;
  5. display: inline-block;
  6. cursor: pointer;
  7. font-weight: bolder;
  8. font-size: 1em;
  9. padding: 0 0.5em;
  10. }
  11. .button--danger {
  12. background-color: red;
  13. color: white;
  14. }