base.css 700 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. html,
  7. body,
  8. #app {
  9. /* min-width: 375px; */
  10. font-size: var(--font-size);
  11. color: var(--font-color);
  12. background-color: #fff;
  13. line-height: 1.5;
  14. transition: all 0.3s;
  15. }
  16. ul,
  17. ol,
  18. dl,
  19. li {
  20. list-style: none;
  21. }
  22. input,
  23. textarea,
  24. button {
  25. outline: none;
  26. }
  27. .width-1200 {
  28. min-width: 1200px;
  29. width: var(--layout-width-1200);
  30. }
  31. @media screen and (max-width: 1200px) {
  32. .width-1200 {
  33. min-width: 100%;
  34. width: 100%;
  35. }
  36. }
  37. @media screen and (max-width: 1024px) {
  38. .width-1200 {
  39. min-width: 100%;
  40. width: 100%;
  41. }
  42. }
  43. @media screen and (max-width: 768px) {
  44. .width-1200 {
  45. min-width: 100%;
  46. width: 100%;
  47. }
  48. }