style.css 634 B

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