base.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. /* color palette from <https://github.com/vuejs/theme> */
  2. :root {
  3. --vt-c-white: #ffffff;
  4. --vt-c-white-soft: #f8f8f8;
  5. --vt-c-white-mute: #f2f2f2;
  6. --vt-c-black: #181818;
  7. --vt-c-black-soft: #222222;
  8. --vt-c-black-mute: #282828;
  9. --vt-c-indigo: #2c3e50;
  10. --vt-c-divider-light-1: rgba(60, 60, 60, 0.29);
  11. --vt-c-divider-light-2: rgba(60, 60, 60, 0.12);
  12. --vt-c-divider-dark-1: rgba(84, 84, 84, 0.65);
  13. --vt-c-divider-dark-2: rgba(84, 84, 84, 0.48);
  14. --vt-c-text-light-1: var(--vt-c-indigo);
  15. --vt-c-text-light-2: rgba(60, 60, 60, 0.66);
  16. --vt-c-text-dark-1: var(--vt-c-white);
  17. --vt-c-text-dark-2: rgba(235, 235, 235, 0.64);
  18. --thenme-color-orange: #ff6154;
  19. }
  20. /* semantic color variables for this project */
  21. :root {
  22. --color-background: var(--vt-c-white);
  23. --color-background-soft: var(--vt-c-white-soft);
  24. --color-background-mute: var(--vt-c-white-mute);
  25. --color-border: var(--vt-c-divider-light-2);
  26. --color-border-hover: var(--vt-c-divider-light-1);
  27. --color-heading: var(--vt-c-text-light-1);
  28. --color-text: var(--vt-c-text-light-1);
  29. --section-gap: 160px;
  30. }
  31. @media (prefers-color-scheme: dark) {
  32. :root {
  33. --color-background: var(--vt-c-black);
  34. --color-background-soft: var(--vt-c-black-soft);
  35. --color-background-mute: var(--vt-c-black-mute);
  36. --color-border: var(--vt-c-divider-dark-2);
  37. --color-border-hover: var(--vt-c-divider-dark-1);
  38. --color-heading: var(--vt-c-text-dark-1);
  39. --color-text: var(--vt-c-text-dark-2);
  40. }
  41. }
  42. *,
  43. *::before,
  44. *::after {
  45. box-sizing: border-box;
  46. margin: 0;
  47. font-weight: normal;
  48. }
  49. body {
  50. min-height: 100vh;
  51. color: var(--color-text);
  52. background: var(--color-background);
  53. transition:
  54. color 0.5s,
  55. background-color 0.5s;
  56. line-height: 1.6;
  57. font-family:
  58. Inter,
  59. -apple-system,
  60. BlinkMacSystemFont,
  61. 'Segoe UI',
  62. Roboto,
  63. Oxygen,
  64. Ubuntu,
  65. Cantarell,
  66. 'Fira Sans',
  67. 'Droid Sans',
  68. 'Helvetica Neue',
  69. sans-serif;
  70. font-size: 16px;
  71. text-rendering: optimizeLegibility;
  72. -webkit-font-smoothing: antialiased;
  73. -moz-osx-font-smoothing: grayscale;
  74. }
  75. .avatar-wrapper {
  76. width: 60px;
  77. height: 60px;
  78. position: relative;
  79. border-radius: 0.3em;
  80. background-color: #ff8176;
  81. text-align: center;
  82. line-height: 60px;
  83. margin-left: -20px;
  84. }
  85. .icon-title {
  86. font-size: 25px;
  87. color: rgba(255, 255, 255, 1);
  88. display: inline-block;
  89. position: relative;
  90. }
  91. .example-list {
  92. width: 95%;
  93. margin-top: 20px;
  94. border-top: 1.5px #dae1eb solid;
  95. padding-top: 20px;
  96. }
  97. .report-item {
  98. width: 100%;
  99. margin-bottom: 10px;
  100. border: none;
  101. }
  102. .report-item:hover {
  103. background: rgb(255,255,255);
  104. background: linear-gradient(15deg, rgba(255,255,255,1) 0%, rgba(252,252,252,1) 50%, rgba(255,97,84,0.103876925770308106) 100%);
  105. }
  106. .report-icon {
  107. float: left;
  108. margin-left: -20px;
  109. }
  110. .report-text {
  111. float: left;
  112. width: 88%;
  113. margin-left: 2%;
  114. }
  115. .report-text-type {
  116. font-size: 18px;
  117. font-weight: 600;
  118. }
  119. .report-text-name {
  120. }
  121. .report-button {
  122. float: right;
  123. width: 50px;
  124. height: 50px;
  125. margin-right: -10px;
  126. margin-top: 0px;
  127. font-size: 40px;
  128. text-align: center;
  129. border: 1.5px solid #dae1eb ;
  130. border-radius: 0.3em;
  131. color: #dae1eb;
  132. }
  133. .report-button:hover {
  134. color: #ff6154;
  135. border: 1.5px solid #ff6154;
  136. cursor: pointer;
  137. }
  138. .report-text-name:hover {
  139. text-decoration: underline;
  140. cursor: pointer;
  141. }
  142. .form-item {
  143. .el-input--small {
  144. font-size: 16px;
  145. }
  146. .el-form-item__label {
  147. width: 21px;
  148. font-size: 16px;
  149. font-weight:450;
  150. color: rgba(102, 102, 102, 1);
  151. color: #040000;
  152. line-height: 16px;
  153. height: 32px;
  154. display: flex;
  155. align-items: center;
  156. justify-content: flex-end;
  157. }
  158. .el-input__inner {
  159. color: #040000 !important;
  160. font-size: 16px;
  161. }
  162. }