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.

27 lines
417 B

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. * {
  12. box-sizing: border-box;
  13. }
  14. a {
  15. color: #759ecc;
  16. text-decoration: none;
  17. }
  18. a:hover {
  19. text-decoration: underline;
  20. }
  21. img {
  22. max-width: 100%;
  23. display: block;
  24. }