| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- .score-list {
- width: 100%;
- border-collapse: collapse;
- margin-top: 8px;
- }
- .score-list th,
- .score-list td {
- padding: 1px 4px;
- border: 1px solid #ddd;
- text-align: left;
- font-size: 15px;
- }
- .tr-after td {
- text-align: center;
- }
- .score-list th {
- background-color: #f2f2f2;
- border: 1px solid #ddd;
- }
- /* .score-list tr:hover {
- background-color: #f5f5f5;
- } */
- tr:nth-child(even) {
- background-color: #c1d6b0;
- /* 双数行的背景色 */
- color: #000;
- }
- .score {
- color: red;
- font-weight: bold;
- font-size: 24px;
- white-space: nowrap;
- }
- .no-print {
- display: none;
- }
- #dropArea {
- width: 300px;
- height: 200px;
- border: 2px dashed #aaa;
- border-radius: 5px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- #content.dragover {
- border-color: #42b983;
- }
- .drop-text {
- margin-bottom: 10px;
- }
- .time {
- font-size: 9px;
- }
- .time-th {
- width: 145px;
- }
- #content {
- width: 600px;
- height: 210px;
- border: 2px dashed #aaa;
- margin: 0 auto;
- border-radius: 5px;
- text-align: center;
- /* padding: 30px 0; */
- }
- .error-text {
- margin-top: 20px;
- font-size: 14px;
- }
- .span {
- color: #3b69e6;
- font-weight: bold;
- }
- .font-size11 {
- font-size: 12px;
- white-space: nowrap;
- width: 10px;
- }
- .red {
- color: red;
- font-weight: bold;
- }
- .colour {
- color: #42b983;
- font-weight: bold;
- }
- .folder {
- width: 100px;
- height: 40px;
- border-radius: 8px;
- line-height: 40px;
- color: #fff;
- margin-left: 50px;
- margin-top: 20px;
- background-color: #5895f1;
- border: 1px solid;
- }
- .where-div {
- text-align: center;
- }
- .where-search {
- text-align: center;
- width: 700px;
- margin: 20px auto;
-
- }
|