You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

globals.css 453B

1234567891011121314151617181920212223242526272829
  1. @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
  2. @import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');
  3. * {
  4. box-sizing: border-box;
  5. margin: 0;
  6. }
  7. body {
  8. font-family: 'Roboto', sans-serif;
  9. --brick: #c6453e;
  10. --dark-brown: #664c47;
  11. --light-brown: #8f7772;
  12. --dark: #1f1c1a;
  13. height: 100%;
  14. }
  15. main {
  16. height: auto;
  17. }
  18. h1,
  19. h2,
  20. h3,
  21. h4,
  22. h5,
  23. h6 {
  24. font-family: 'Indie Flower', cursive;
  25. }