webOnServer.css 426 B

123456789101112131415161718192021222324252627282930313233
  1. @media screen and (max-width: 750px) {
  2. html {
  3. font-size: calc(100vw / 7.5);
  4. }
  5. }
  6. @media screen and (min-width: 750px) {
  7. html {
  8. font-size: calc(450px / 7.5);
  9. }
  10. }
  11. html, body, div, ul, li, p {
  12. padding: 0;
  13. margin: 0;
  14. }
  15. ul, li {
  16. list-style: none;
  17. }
  18. .container{
  19. width: 7.5rem;
  20. height: 100vh;
  21. background: #F2F2F2;
  22. margin: 0 auto;
  23. }
  24. .title{
  25. width: 100%;
  26. text-align: center;
  27. font-size: 0.4rem;
  28. }