mock平台

defaultTheme.css 7.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443
  1. @charset "UTF-8";
  2. html,
  3. body,
  4. h1,
  5. h2,
  6. h3,
  7. h4,
  8. h5,
  9. h6,
  10. p,
  11. blockquote {
  12. margin: 0;
  13. padding: 0;
  14. font-weight: normal;
  15. -webkit-font-smoothing: antialiased;
  16. }
  17. /* 设置滚动条的样式 */
  18. ::-webkit-scrollbar {
  19. width: 6px;
  20. }
  21. /* 外层轨道 */
  22. ::-webkit-scrollbar-track {
  23. -webkit-box-shadow: inset006pxrgba(255, 0, 0, 0.3);
  24. background: rgba(0, 0, 0, 0.1);
  25. }
  26. /* 滚动条滑块 */
  27. ::-webkit-scrollbar-thumb {
  28. border-radius: 4px;
  29. background: rgba(0, 0, 0, 0.2);
  30. -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.5);
  31. }
  32. ::-webkit-scrollbar-thumb:window-inactive {
  33. background: rgba(0, 0, 0, 0.2);
  34. }
  35. .yapi-run-auto-test {
  36. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimSun, sans-serif;
  37. font-size: 13px;
  38. line-height: 25px;
  39. color: #393838;
  40. position: relative;
  41. }
  42. .yapi-run-auto-test table {
  43. margin: 10px 0 15px 0;
  44. border-collapse: collapse;
  45. }
  46. .yapi-run-auto-test td,
  47. th {
  48. border: 1px solid #ddd;
  49. padding: 3px 10px;
  50. }
  51. .yapi-run-auto-test th {
  52. padding: 5px 10px;
  53. }
  54. .yapi-run-auto-test a, a:link, a:visited {
  55. color: #34495e;
  56. text-decoration: none;
  57. }
  58. .yapi-run-auto-test a:hover, a:focus {
  59. color: #59d69d;
  60. text-decoration: none;
  61. }
  62. .yapi-run-auto-test a img {
  63. border: none;
  64. }
  65. .yapi-run-auto-test p {
  66. padding-left: 10px;
  67. margin-bottom: 9px;
  68. }
  69. .yapi-run-auto-test h1,
  70. h2,
  71. h3,
  72. h4,
  73. h5,
  74. h6 {
  75. color: #404040;
  76. line-height: 36px;
  77. }
  78. .yapi-run-auto-test h1 {
  79. color: #2c3e50;
  80. font-weight: 600;
  81. font-size: 32px;
  82. padding-bottom: 16px;
  83. line-height: 50px;
  84. }
  85. .yapi-run-auto-test h2 {
  86. font-size: 28px;
  87. padding-top: 10px;
  88. padding-bottom: 10px;
  89. }
  90. .yapi-run-auto-test h3 {
  91. clear: both;
  92. font-weight: 400;
  93. margin-top: 20px;
  94. margin-bottom: 20px;
  95. border-left: 3px solid #59d69d;
  96. padding-left: 8px;
  97. font-size: 18px;
  98. }
  99. .yapi-run-auto-test h4 {
  100. font-size: 16px;
  101. }
  102. .yapi-run-auto-test h5 {
  103. font-size: 14px;
  104. }
  105. .yapi-run-auto-test h6 {
  106. font-size: 13px;
  107. }
  108. .yapi-run-auto-test hr {
  109. margin: 0 0 19px;
  110. border: 0;
  111. border-bottom: 1px solid #ccc;
  112. }
  113. .yapi-run-auto-test blockquote {
  114. padding: 13px 13px 21px 15px;
  115. margin-bottom: 18px;
  116. font-family: georgia, serif;
  117. font-style: italic;
  118. }
  119. .yapi-run-auto-test blockquote:before {
  120. font-size: 40px;
  121. margin-left: -10px;
  122. font-family: georgia, serif;
  123. color: #eee;
  124. }
  125. .yapi-run-auto-test blockquote p {
  126. font-size: 14px;
  127. font-weight: 300;
  128. line-height: 18px;
  129. margin-bottom: 0;
  130. font-style: italic;
  131. }
  132. .yapi-run-auto-test code,
  133. pre {
  134. font-family: Monaco, Andale Mono, Courier New, monospace;
  135. }
  136. .yapi-run-auto-test code {
  137. background-color: #fee9cc;
  138. color: rgba(0, 0, 0, 0.75);
  139. padding: 1px 3px;
  140. font-size: 12px;
  141. -webkit-border-radius: 3px;
  142. -moz-border-radius: 3px;
  143. border-radius: 3px;
  144. }
  145. .yapi-run-auto-test pre {
  146. display: block;
  147. padding: 14px;
  148. margin: 0 0 18px;
  149. line-height: 16px;
  150. font-size: 11px;
  151. border: 1px solid #d9d9d9;
  152. white-space: pre-wrap;
  153. background: #f6f6f6;
  154. overflow-x: auto;
  155. }
  156. .yapi-run-auto-test pre code {
  157. background-color: #f6f6f6;
  158. color: #737373;
  159. font-size: 11px;
  160. padding: 0;
  161. }
  162. .yapi-run-auto-test sup {
  163. font-size: 0.83em;
  164. vertical-align: super;
  165. line-height: 0;
  166. }
  167. * {
  168. -webkit-print-color-adjust: exact;
  169. }
  170. @media print {
  171. body,
  172. code,
  173. pre code,
  174. h1,
  175. h2,
  176. h3,
  177. h4,
  178. h5,
  179. h6 {
  180. color: black;
  181. }
  182. table,
  183. pre {
  184. page-break-inside: avoid;
  185. }
  186. }
  187. html,
  188. body {
  189. height: 100%;
  190. }
  191. .yapi-run-auto-test .menu-left {
  192. position: fixed;
  193. top: 61px;
  194. left: 0;
  195. bottom: 0;
  196. overflow-x: hidden;
  197. overflow-y: auto;
  198. width: 260px;
  199. }
  200. .yapi-run-auto-test .menu-left > .list-content {
  201. overflow: auto;
  202. margin: 0px;
  203. box-sizing: border-box;
  204. display: flex;
  205. align-items: center;
  206. justify-content: space-between;
  207. padding: 16px 8px 0 20px;
  208. }
  209. .yapi-run-auto-test .list {
  210. padding: 2px 0px;
  211. text-decoration: none;
  212. font-size: 14px;
  213. cursor: pointer;
  214. padding-right: 8px;
  215. }
  216. .yapi-run-auto-test .content-right {
  217. max-width: 700px;
  218. margin-left: 290px;
  219. padding-left: 70px;
  220. flex-grow: 1;
  221. }
  222. .yapi-run-auto-test .content-right h2:target {
  223. padding-top: 80px;
  224. }
  225. .yapi-run-auto-test > p {
  226. margin-left: 30px;
  227. }
  228. .yapi-run-auto-test > table {
  229. margin-left: 30px;
  230. }
  231. .yapi-run-auto-test > pre {
  232. margin-left: 30px;
  233. }
  234. .yapi-run-auto-test .curProject {
  235. position: fixed;
  236. top: 20px;
  237. font-size: 25px;
  238. color: black;
  239. margin-left: -240px;
  240. width: 240px;
  241. padding: 5px;
  242. line-height: 25px;
  243. box-sizing: border-box;
  244. }
  245. .yapi-run-auto-test .g-doc {
  246. margin-top: 56px;
  247. padding-top: 24px;
  248. display: flex;
  249. }
  250. .yapi-run-auto-test .curproject-name {
  251. font-size: 42px;
  252. }
  253. .yapi-run-auto-test .m-header {
  254. background: #32363a;
  255. height: 56px;
  256. line-height: 56px;
  257. padding-left: 60px;
  258. display: flex;
  259. align-items: center;
  260. position: fixed;
  261. z-index: 9;
  262. top: 0;
  263. left: 0;
  264. right: 0;
  265. }
  266. .yapi-run-auto-test .m-header .title {
  267. font-size: 22px;
  268. color: #fff;
  269. font-weight: normal;
  270. -webkit-font-smoothing: antialiased;
  271. margin: 0;
  272. margin-left: 16px;
  273. padding: 0;
  274. line-height: 56px;
  275. border: none;
  276. }
  277. .yapi-run-auto-test .m-header .nav {
  278. color: #fff;
  279. font-size: 16px;
  280. position: absolute;
  281. right: 32px;
  282. top: 0;
  283. }
  284. .yapi-run-auto-test .m-header .nav a {
  285. color: #fff;
  286. margin-left: 16px;
  287. padding: 8px;
  288. transition: color .2s;
  289. }
  290. .yapi-run-auto-test .m-header .nav a:hover {
  291. color: #59d69d;
  292. }
  293. .yapi-run-auto-test .m-footer {
  294. border-top: 1px solid #ddd;
  295. padding-top: 16px;
  296. padding-bottom: 16px;
  297. }
  298. .yapi-run-auto-test .row{
  299. position: relative;
  300. height: auto;
  301. zoom: 1;
  302. display: block;
  303. box-sizing: border-box;
  304. }
  305. .yapi-run-auto-test .case-report {
  306. margin: 10px;
  307. display: flex;
  308. }
  309. .yapi-run-auto-test .case-report .case-report-title {
  310. font-size: 14px;
  311. text-align: right;
  312. padding-right: 20px;
  313. }
  314. .yapi-run-auto-test .col-3 {
  315. display: block;
  316. box-sizing: border-box;
  317. width: 12.5%;
  318. }
  319. .yapi-run-auto-test .col-21 {
  320. display: block;
  321. box-sizing: border-box;
  322. width: 87.5%;
  323. }
  324. .yapi-run-auto-test .icon {
  325. display: inline-block;
  326. font-style: normal;
  327. vertical-align: baseline;
  328. text-align: center;
  329. text-transform: none;
  330. line-height: 1;
  331. text-rendering: optimizeLegibility;
  332. -webkit-font-smoothing: antialiased;
  333. font-size: 14px;
  334. font-weight: 700;
  335. }
  336. .yapi-run-auto-test .icon-check-circle:before {
  337. content: "\2713";
  338. }
  339. .yapi-run-auto-test .icon-close-circle:before {
  340. content: "\2715";
  341. }
  342. .yapi-run-auto-test .icon-warning-circle:before {
  343. content: "!";
  344. }
  345. .yapi-run-auto-test .icon:before {
  346. display: block;
  347. font-family: "anticon" !important;
  348. }
  349. .yapi-run-auto-test .summary {
  350. border-bottom: 1px solid #ddd;
  351. padding-bottom: 8px;
  352. font-size: 18px;
  353. }
  354. .yapi-run-auto-test .success{
  355. color: #208054;
  356. font-weight: 700;
  357. }
  358. .yapi-run-auto-test .status {
  359. flex-shrink: 0;
  360. margin: 0 5px;
  361. width: 20px;
  362. height: 20px;
  363. font-size: 12px;
  364. border-radius: 2px;
  365. color: #fff;
  366. display: flex;
  367. justify-content: center;
  368. align-items: center;
  369. }
  370. .yapi-run-auto-test .status-ok {
  371. background-color: #17c5a6;
  372. }
  373. .yapi-run-auto-test .status-ko {
  374. background-color: #fd3c3c;
  375. }
  376. .yapi-run-auto-test .status-warning {
  377. background-color: #ffb74c;
  378. }
  379. /*# sourceMappingURL=defaultTheme.css.map */