UltraRonin commited on
Commit
e3d8517
·
1 Parent(s): 6455697
Files changed (1) hide show
  1. index.html +22 -18
index.html CHANGED
@@ -87,24 +87,24 @@
87
  font-size: 15px;
88
  font-weight: bold;
89
  }
90
- tr:nth-child(odd) {
91
- background-color: #fdfdfd; /* Light background for odd rows */
92
- }
93
- tr:nth-child(even) {
94
- background-color: #f7f9fc; /* Slightly darker background for even rows */
95
- }
96
- /* 表格行悬停样式 */
97
- tr:hover {
98
- background-color: var(--secondary-color);
99
- }
100
- /* 单元格悬停时文本颜色 */
101
- tr:hover th, tr:hover td {
102
- color: var(--header-text-color); /* 确保文本颜色为白色 */
103
- }
104
- /* 悬停时链接的颜色 */
105
- tr:hover a {
106
- color: inherit; /* 继承自父元素的颜色 */
107
- }
108
  a {
109
  color: #007BFF;
110
  text-decoration: underline;
@@ -122,6 +122,10 @@ tr:hover a {
122
  th:hover, th a:hover {
123
  background-color: var(--accent-color);
124
  }
 
 
 
 
125
  </style>
126
 
127
  <script type="text/javascript" async
 
87
  font-size: 15px;
88
  font-weight: bold;
89
  }
90
+ tr:nth-child(odd) {
91
+ background-color: #fdfdfd; /* Light background for odd rows */
92
+ }
93
+ tr:nth-child(even) {
94
+ background-color: #f7f9fc; /* Slightly darker background for even rows */
95
+ }
96
+ /* 表格行悬停样式 */
97
+ tr:hover {
98
+ background-color: var(--secondary-color);
99
+ }
100
+ /* 单元格悬停时文本颜色 */
101
+ tr:hover th, tr:hover td {
102
+ color: var(--header-text-color); /* 确保文本颜色为白色 */
103
+ }
104
+ /* 悬停时链接的颜色 */
105
+ tr:hover a {
106
+ color: inherit; /* 继承自父元素的颜色 */
107
+ }
108
  a {
109
  color: #007BFF;
110
  text-decoration: underline;
 
122
  th:hover, th a:hover {
123
  background-color: var(--accent-color);
124
  }
125
+ .sort-arrow {
126
+ margin-left: 5px;
127
+ font-size: 12px;
128
+ }
129
  </style>
130
 
131
  <script type="text/javascript" async