style.css 763 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @import 'dropdown.css';
  2. :root {
  3. --background: rgb(202, 225, 233);
  4. --dropdown-background: rgb(202, 225, 233);
  5. --dropdown-background-highlight: rgb(144, 212, 235);
  6. }
  7. /* Add nodebug class to any parent field (e.g. body) to turn off coloring */
  8. .nodebug { --color-form: transparent; --color-field: transparent; --color-label: transparent; --color-input: transparent; }
  9. html {
  10. box-sizing: border-box;
  11. }
  12. *, *::before, *::after {
  13. box-sizing: inherit;
  14. }
  15. body {
  16. display: flex;
  17. flex-direction: column;
  18. background-color: var(--background);
  19. }
  20. .body--centered {
  21. align-items: center;
  22. }
  23. .show-case {
  24. display: flex;
  25. flex-direction: column;
  26. align-items: flex-start;
  27. margin: 1em;
  28. max-width: 750px;
  29. }
  30. .show-case--big {
  31. align-items: stretch;
  32. }