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