new: Added new tab pages and related modules

This commit is contained in:
2024-12-16 17:19:06 +08:00
parent 65e5e9eafc
commit 54f2b2e648
14 changed files with 1615 additions and 10 deletions

View File

@@ -94,4 +94,11 @@ a:hover {
.main-menu-link {
margin-right: 10px;
}
.special-info-area {
height: 340px;
padding: 20px;
border-radius: 4px;
border: var(--secondary-text-color) 1px dashed;
}

View File

@@ -4,6 +4,18 @@ pre {
border: var(--secondary-text-color) 1px dashed;
}
table {
width: 100%;
}
tr, th, td {
height: 30px;
padding: 10px;
border-radius: 4px;
border: 1px var(--secondary-text-color) solid;
color: var(--primary-text-color);
}
.post-menu {
max-width: 1000px;
}

View File

@@ -0,0 +1,53 @@
.tagged-name {
color: var(--primary-color);
}
.tagged-post-item {
padding-top: 5px;
padding-bottom: 5px;
color: var(--primary-text-color);
list-style: none;
}
.tagged-post-item-wrap {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.tagged-post-item-date {
color: var(--secondary-text-color);
}
.tagged-post-item-date {
color: var(--secondary-text-color);
}
.tagged-post-pagination-item {
color: var(--secondary-text-color);
padding-right: 10px;
}
.tag-statistics {
width: 60%;
height: 100%;
position: fixed;
top: 0;
right: 0;
}
.tag-word-cloud-canvas {
width: 100%;
height: 100%;
opacity: 0.3;
}
.tag-word-cloud-canvas * {
user-select: none;
}
@media screen and (max-width: 992px) {
.tag-statistics {
display: none;
}
}