style.css 817 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. @import 'button.css';
  2. :root {
  3. --color-primary: #fecd3a;
  4. --color-primary-saturated: #ffbf00;
  5. --color-secondary: #3764ce;
  6. --color-secondary-saturated: #003dcc;
  7. --color-success: #289e44;
  8. --color-success-saturated: #01a828;
  9. --color-warning: rgb(255, 157, 44);
  10. --color-warning-saturated: rgb(255, 136, 0);
  11. --color-danger: rgb(233, 44, 44);
  12. --color-danger-saturated: rgb(235, 1, 1);
  13. }
  14. /* Add nodebug class to any parent field (e.g. body) to turn off coloring */
  15. .nodebug { --color-form: transparent; --color-field: transparent; --color-label: transparent; --color-input: transparent; }
  16. html {
  17. box-sizing: border-box;
  18. }
  19. *, *::before, *::after {
  20. box-sizing: inherit;
  21. }
  22. body {
  23. display: flex;
  24. flex-direction: column;
  25. align-items: flex-start;
  26. }
  27. .body--centered {
  28. align-items: center;
  29. }