index.css 522 B

123456789101112131415161718192021222324
  1. body {
  2. margin: 0;
  3. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
  4. 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
  5. sans-serif;
  6. -webkit-font-smoothing: antialiased;
  7. -moz-osx-font-smoothing: grayscale;
  8. /* мои стили */
  9. height: 100%;
  10. }
  11. .wrapper {
  12. max-width: 60%;
  13. margin: 0 auto;
  14. display: flex;
  15. min-height: 100vh;
  16. flex-direction: column;
  17. }
  18. code {
  19. font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
  20. monospace;
  21. }