Files
TeyvatGuide/src/assets/css/anno-parser.css
2023-10-15 17:04:44 +08:00

80 lines
1.1 KiB
CSS

/*
* @file assets css post-parser.css
* @description 游戏公告解析 css
* @since Beta v0.3.3
*/
.anno-body {
width: 800px;
margin: 0 auto;
font-family: var(--font-text);
}
.anno-title,
.anno-subtitle {
color: var(--common-text-title);
font-family: var(--font-title);
}
.anno-title {
font-size: 24px;
}
.anno-subtitle {
font-size: 18px;
opacity: 0.5;
}
.anno-img {
width: 800px;
max-width: 100%;
height: auto;
border-radius: 10px;
margin: 10px auto;
}
.anno-content {
line-height: 2;
}
.anno-link-icon {
width: 18px;
height: 18px;
color: #00c3ff;
}
.anno-content :deep(a) {
color: #00c3ff;
text-decoration: none;
}
.anno-content :deep(p) {
color: #4b5366;
line-height: 2;
}
.anno-content :deep(details) {
padding: 10px;
border: #35acce 2px solid;
border-radius: 10px;
margin: 10px;
}
.anno-content :deep(details) div {
margin-left: 10px;
}
.anno-content :deep(details) ::marker {
color: #35acce;
content: "✧";
}
.anno-content :deep(ol) {
list-style: "✧";
}
.anno-content :deep(td) {
padding-left: 10px;
line-height: 2;
}