button.css 255 B

1234567891011121314151617181920
  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. height: 100%;
  10. padding: 0 0.5em;
  11. margin-left: 0.2em;
  12. }
  13. .button--danger {
  14. background-color: red;
  15. color: white;
  16. }