style.css 674 B

12345678910111213141516171819202122232425262728293031323334
  1. @import 'media.css';
  2. :root {
  3. --media-background: rgb(255, 219, 60);
  4. --media-background-highlight: rgb(255, 214, 31);
  5. --media-background-border: #aaa;
  6. --media-background-embedded: rgb(255, 227, 103);
  7. }
  8. /* Add nodebug class to any parent field (e.g. body) to turn off coloring */
  9. .nodebug { --color-form: transparent; --color-field: transparent; --color-label: transparent; --color-input: transparent; }
  10. html {
  11. box-sizing: border-box;
  12. }
  13. *, *::before, *::after {
  14. box-sizing: inherit;
  15. }
  16. body {
  17. display: flex;
  18. flex-direction: column;
  19. align-items: flex-start;
  20. }
  21. .body--centered {
  22. align-items: center;
  23. }
  24. .show-case {
  25. margin: 1em;
  26. max-width: 750px;
  27. }