A8000
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.

105 lines
1.7 KiB

8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
  1. :root {
  2. font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  3. line-height: 1.5;
  4. font-weight: 400;
  5. color-scheme: light dark;
  6. color: rgba(255, 255, 255, 0.87);
  7. background-color: #242424;
  8. font-synthesis: none;
  9. text-rendering: optimizeLegibility;
  10. -webkit-font-smoothing: antialiased;
  11. -moz-osx-font-smoothing: grayscale;
  12. }
  13. .ElMessageExtClass {
  14. font-size: 2.5rem;
  15. .el-message__content {
  16. font-size: 1.8rem;
  17. }
  18. }
  19. .main-content .el-dialog .el-dialog__title {
  20. --el-dialog-title-font-size: 28px;
  21. --el-dialog-font-line-height: 30px;
  22. }
  23. .main-content .el-dialog .el-dialog__body {
  24. --el-dialog-content-font-size: 22px;
  25. }
  26. .main-content .el-dialog .el-dialog__footer .el-button {
  27. --el-font-size-base: 24px;
  28. height: 3rem;
  29. padding: 1rem 2rem;
  30. }
  31. .el-message-box .el-message-box__content {
  32. --el-messagebox-content-font-size: 22px;
  33. }
  34. .el-message-box .el-message-box__btns .el-button {
  35. --el-font-size-base: 22px;
  36. height: 2.5rem;
  37. padding: 1rem 2rem;
  38. }
  39. a {
  40. font-weight: 500;
  41. color: #646cff;
  42. text-decoration: inherit;
  43. }
  44. a:hover {
  45. color: #535bf2;
  46. }
  47. body {
  48. width: 800px;
  49. height: 1280px;
  50. margin: 0 auto;
  51. display: flex;
  52. place-items: center;
  53. min-width: 100vw;
  54. min-height: 100vh;
  55. }
  56. h1 {
  57. font-size: 3.2em;
  58. line-height: 1.1;
  59. }
  60. button {
  61. border: none;
  62. }
  63. .card {
  64. padding: 2em;
  65. }
  66. #app {
  67. width: 100vw;
  68. height: 100%;
  69. margin: 0 auto;
  70. text-align: center;
  71. }
  72. @media (prefers-color-scheme: light) {
  73. :root {
  74. color: #213547;
  75. background-color: #ffffff;
  76. }
  77. a:hover {
  78. color: #747bff;
  79. }
  80. button {
  81. background-color: #f9f9f9;
  82. }
  83. }
  84. @media (max-width: 800px) {
  85. :root {
  86. font-size: 0.8em;
  87. }
  88. }
  89. * {
  90. -webkit-tap-highlight-color: transparent;
  91. -webkit-touch-callout: none;
  92. }