Second frontend, written in Next.JS + Typescript.
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.

31 lines
454 B

4 years ago
4 years ago
4 years ago
4 years ago
  1. html,
  2. body {
  3. padding: 0;
  4. margin: 0;
  5. font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
  6. Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  7. line-height: 1.6;
  8. font-size: 18px;
  9. color: #abc;
  10. }
  11. html {
  12. background-color: black;
  13. }
  14. * {
  15. box-sizing: border-box;
  16. }
  17. a {
  18. color: #759ecc;
  19. text-decoration: none;
  20. }
  21. a:hover {
  22. text-decoration: underline;
  23. }
  24. img {
  25. max-width: 100%;
  26. display: block;
  27. }