style.css 682 B

123456789101112131415161718192021222324252627282930313233343536
  1. :root {
  2. font-family: 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  3. line-height: 1.5;
  4. font-weight: 400;
  5. color: #0f172a;
  6. background: #f1f5f9;
  7. font-synthesis: none;
  8. text-rendering: optimizeLegibility;
  9. -webkit-font-smoothing: antialiased;
  10. -moz-osx-font-smoothing: grayscale;
  11. }
  12. * {
  13. box-sizing: border-box;
  14. }
  15. html,
  16. body,
  17. #app {
  18. margin: 0;
  19. min-width: 320px;
  20. height: 100%;
  21. overflow: hidden;
  22. }
  23. body {
  24. background:
  25. radial-gradient(ellipse 80% 50% at 0% 0%, #e0e7ff 0%, transparent 55%),
  26. radial-gradient(ellipse 60% 40% at 100% 0%, #dbeafe 0%, transparent 50%),
  27. #f1f5f9;
  28. }
  29. button,
  30. select {
  31. font-family: inherit;
  32. }