style.css 672 B

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