index.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. .score-list {
  2. width: 100%;
  3. border-collapse: collapse;
  4. margin-top: 8px;
  5. }
  6. .score-list th,
  7. .score-list td {
  8. padding: 1px 4px;
  9. border: 1px solid #ddd;
  10. text-align: left;
  11. font-size: 15px;
  12. }
  13. .tr-after td {
  14. text-align: center;
  15. }
  16. .score-list th {
  17. background-color: #f2f2f2;
  18. border: 1px solid #ddd;
  19. }
  20. /* .score-list tr:hover {
  21. background-color: #f5f5f5;
  22. } */
  23. tr:nth-child(even) {
  24. background-color: #c1d6b0;
  25. /* 双数行的背景色 */
  26. color: #000;
  27. }
  28. .score {
  29. color: red;
  30. font-weight: bold;
  31. font-size: 24px;
  32. white-space: nowrap;
  33. }
  34. .no-print {
  35. display: none;
  36. }
  37. #dropArea {
  38. width: 300px;
  39. height: 200px;
  40. border: 2px dashed #aaa;
  41. border-radius: 5px;
  42. display: flex;
  43. flex-direction: column;
  44. justify-content: center;
  45. align-items: center;
  46. }
  47. #content.dragover {
  48. border-color: #42b983;
  49. }
  50. .drop-text {
  51. margin-bottom: 10px;
  52. }
  53. .time {
  54. font-size: 9px;
  55. }
  56. .time-th {
  57. width: 145px;
  58. }
  59. #content {
  60. width: 600px;
  61. height: 210px;
  62. border: 2px dashed #aaa;
  63. margin: 0 auto;
  64. border-radius: 5px;
  65. text-align: center;
  66. /* padding: 30px 0; */
  67. }
  68. .error-text {
  69. margin-top: 20px;
  70. font-size: 14px;
  71. }
  72. .span {
  73. color: #3b69e6;
  74. font-weight: bold;
  75. }
  76. .font-size11 {
  77. font-size: 12px;
  78. white-space: nowrap;
  79. width: 10px;
  80. }
  81. .red {
  82. color: red;
  83. font-weight: bold;
  84. }
  85. .colour {
  86. color: #42b983;
  87. font-weight: bold;
  88. }
  89. .folder {
  90. width: 100px;
  91. height: 40px;
  92. border-radius: 8px;
  93. line-height: 40px;
  94. color: #fff;
  95. margin-left: 50px;
  96. margin-top: 20px;
  97. background-color: #5895f1;
  98. border: 1px solid;
  99. }
  100. .where-div {
  101. text-align: center;
  102. }
  103. .where-search {
  104. text-align: center;
  105. width: 700px;
  106. margin: 20px auto;
  107. }
粤ICP备19079148号