index.css 885 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. html {
  2. overflow-y: scroll;
  3. overflow-x: hidden;
  4. }
  5. html {
  6. overflow: hidden;
  7. }
  8. body {
  9. background-color: white;
  10. min-width: 100vw;
  11. min-height: 100vh;
  12. overflow: hidden;
  13. margin: 0;
  14. padding: 0;
  15. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
  16. 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
  17. sans-serif;
  18. -webkit-font-smoothing: antialiased;
  19. -moz-osx-font-smoothing: grayscale;
  20. }
  21. code {
  22. font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
  23. monospace;
  24. }
  25. img {
  26. display: block;
  27. max-width: 100%;
  28. height: auto;
  29. }
  30. .box.big {
  31. width: 200px;
  32. height: 200px;
  33. margin-bottom: 100px;
  34. }
  35. .box.red {
  36. background-color: teal;
  37. }
  38. h1,
  39. h2,
  40. h3,
  41. h4,
  42. h5 {
  43. margin: 0;
  44. padding: 0;
  45. }
  46. ul {
  47. padding: 0;
  48. margin: 0;
  49. }
  50. @import 'https://fonts.googleapis.com/css?family=Mountains+of+Christmas';