style.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  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. a {
  14. font-weight: 500;
  15. color: #646cff;
  16. text-decoration: inherit;
  17. }
  18. a:hover {
  19. color: #535bf2;
  20. }
  21. body {
  22. margin: 0;
  23. display: flex;
  24. place-items: center;
  25. min-width: 320px;
  26. min-height: 100vh;
  27. }
  28. h1 {
  29. font-size: 3.2em;
  30. line-height: 1.1;
  31. }
  32. button {
  33. border-radius: 8px;
  34. border: 1px solid transparent;
  35. padding: 0.6em 1.2em;
  36. font-size: 1em;
  37. font-weight: 500;
  38. font-family: inherit;
  39. background-color: #1a1a1a;
  40. cursor: pointer;
  41. transition: border-color 0.25s;
  42. }
  43. button:hover {
  44. /* border-color: #646cff; */
  45. }
  46. button:focus,
  47. button:focus-visible {
  48. /* outline: 4px auto -webkit-focus-ring-color; */
  49. }
  50. .card {
  51. padding: 2em;
  52. }
  53. #app {
  54. font-family: Avenir, Helvetica, Arial, sans-serif;
  55. -webkit-font-smoothing: antialiased;
  56. -moz-osx-font-smoothing: grayscale;
  57. /* text-align: center; */
  58. color: #2c3e50;
  59. width: 100vw;
  60. height: 100vh;
  61. }
  62. @media (prefers-color-scheme: light) {
  63. :root {
  64. color: #213547;
  65. background-color: #ffffff;
  66. }
  67. a:hover {
  68. color: #747bff;
  69. }
  70. button {
  71. background-color: #f9f9f9;
  72. }
  73. }
  74. .c_pointer{
  75. cursor: pointer;
  76. }
  77. .c_blue{
  78. color: #747bff;
  79. }
  80. .c_red{
  81. color: red;
  82. }
  83. .font_14{
  84. font-size: 14px;
  85. }
  86. .p_rel{
  87. position: relative;
  88. }
  89. .p_abs{
  90. position: absolute;
  91. }
  92. /* 图片上传 */
  93. .avatar-uploader{
  94. border: 1px dashed #eee;
  95. border-radius: 3px;
  96. height: 178px;
  97. width: 178px;
  98. }
  99. .scope_avatar{
  100. width: 80px;
  101. height: 80px;
  102. }
  103. .statusCode {
  104. display: flex;
  105. align-items: center;
  106. /* justify-content: center; */
  107. .dots {
  108. width: 8px;
  109. height: 8px;
  110. border-radius: 50%;
  111. background: rgb(0, 183, 255);
  112. margin-right: 10px;
  113. }
  114. }
  115. .statusCode1 {
  116. display: flex;
  117. align-items: center;
  118. /* justify-content: center; */
  119. .dots {
  120. width: 8px;
  121. height: 8px;
  122. border-radius: 50%;
  123. background: red;
  124. margin-right: 10px;
  125. }
  126. }
  127. .avatar-uploader .avatar {
  128. width: 178px;
  129. height: 178px;
  130. display: block;
  131. }
  132. .avatar-uploader .close_icon{
  133. position: absolute;
  134. top: 0;
  135. right: 0;
  136. z-index: 8;
  137. color: #fff;
  138. cursor: pointer;
  139. background-color: rgba(0,0,0,0.25);
  140. width: 20px;
  141. height: 20px;
  142. }
  143. .el-icon.avatar-uploader-icon {
  144. font-size: 28px;
  145. color: #8c939d;
  146. height: 178px;
  147. width: 178px;
  148. text-align: center;
  149. }
  150. .real_image{
  151. width: 178px;
  152. height: 178px;
  153. }
  154. .flex{
  155. display: flex;
  156. }
  157. .jc_between{
  158. display: flex;
  159. justify-content: space-between;
  160. }
  161. .w_100{
  162. width: 100%;
  163. }
  164. .w_50{
  165. width: 50%;
  166. }
  167. .h_100{
  168. height: 100%;
  169. }
  170. .pd_t10{
  171. padding-top: 10px;
  172. }
  173. .pd_x10{
  174. padding: 0 10px;
  175. }
  176. .pd_x20{
  177. padding: 0 20px;
  178. }
  179. .pd_y10{
  180. padding: 10px 0;
  181. }
  182. .pd_b10{
  183. padding-bottom: 10px;
  184. }
  185. .color_ccc{
  186. color: #cccccc;
  187. }
  188. .color_aaa{
  189. color: #aaa;
  190. }