2020-10-09 09:56:15 +00:00
|
|
|
.table {
|
2023-02-23 04:59:59 +00:00
|
|
|
font-size: var(--font-size-sm);
|
2020-10-10 08:28:26 +00:00
|
|
|
overflow: hidden;
|
2021-02-21 14:12:49 +00:00
|
|
|
height: 100%;
|
2020-10-09 09:56:15 +00:00
|
|
|
}
|
|
|
|
|
|
2020-10-10 03:37:24 +00:00
|
|
|
.header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
2023-02-23 04:59:59 +00:00
|
|
|
font-size: var(--font-size-md);
|
2023-04-19 23:42:42 +00:00
|
|
|
line-height: 40px;
|
2023-04-17 17:26:08 +00:00
|
|
|
font-weight: 700;
|
2020-10-10 03:37:24 +00:00
|
|
|
}
|
|
|
|
|
|
2020-10-09 09:56:15 +00:00
|
|
|
.row {
|
|
|
|
|
display: flex;
|
2020-10-10 08:16:28 +00:00
|
|
|
align-items: center;
|
2023-02-23 04:59:59 +00:00
|
|
|
gap: 10px;
|
2023-04-17 17:26:08 +00:00
|
|
|
height: 50px;
|
2022-12-13 03:45:38 +00:00
|
|
|
border-bottom: 1px solid var(--base300);
|
2020-10-09 09:56:15 +00:00
|
|
|
}
|
2020-10-09 11:21:59 +00:00
|
|
|
|
|
|
|
|
.body {
|
|
|
|
|
overflow: auto;
|
2021-02-21 14:12:49 +00:00
|
|
|
height: 100%;
|
2020-10-09 11:21:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon {
|
2020-10-10 08:16:28 +00:00
|
|
|
margin-right: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.time {
|
|
|
|
|
min-width: 60px;
|
|
|
|
|
overflow: hidden;
|
2020-10-09 11:21:59 +00:00
|
|
|
}
|
2020-10-10 00:58:27 +00:00
|
|
|
|
|
|
|
|
.website {
|
2020-10-10 08:28:26 +00:00
|
|
|
text-align: right;
|
2020-10-11 05:36:55 +00:00
|
|
|
padding: 0 20px;
|
2020-10-10 00:58:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.detail {
|
2020-10-10 08:16:28 +00:00
|
|
|
display: flex;
|
2023-04-19 23:42:42 +00:00
|
|
|
align-items: center;
|
2020-10-10 00:58:27 +00:00
|
|
|
flex: 1;
|
2023-02-23 04:59:59 +00:00
|
|
|
gap: 10px;
|
2020-10-10 00:58:27 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
2020-11-03 03:37:13 +00:00
|
|
|
|
2023-04-17 17:26:08 +00:00
|
|
|
.detail > span {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
display: -webkit-box;
|
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
|
line-clamp: 2;
|
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-03 03:37:13 +00:00
|
|
|
.row .link {
|
2022-12-13 03:45:38 +00:00
|
|
|
color: var(--base900);
|
2020-11-03 03:37:13 +00:00
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.row .link:hover {
|
|
|
|
|
color: var(--primary400);
|
|
|
|
|
}
|