style.css 604 B

1234567891011121314151617181920212223242526
  1. @import 'button.css';
  2. @import 'form.css';
  3. @import 'field.css';
  4. @import 'select.css';
  5. @import 'radio.css';
  6. :root {
  7. --color-form: rgb(203, 222, 228);
  8. --color-field: rgba(255, 0, 0, 0.123);
  9. --color-label: rgba(0, 255, 42, 0.123);
  10. --color-input: rgba(0, 4, 255, 0.123);
  11. }
  12. /* Add nodebug class to any parent field (e.g. body) to turn off coloring */
  13. .nodebug { --color-form: transparent; --color-field: transparent; --color-label: transparent; --color-input: transparent; }
  14. body {
  15. display: flex;
  16. flex-direction: column;
  17. align-items: flex-start;
  18. }
  19. .body--centered {
  20. align-items: center;
  21. }