更多操作
创建页面,内容为“.home-card { width: min-content; } .home-card p em { display: none; } .dictionary { border-collapse: collapse; white-space: nowrap; } .dictionary th { background-color: #750800; color: #fff; border-bottom-width: 0; font-size: 1.05em; padding: 5px 10px; text-align: center; } .dictionary td { color: #000; font-size: 1em; padding: 5px 10px; } .dictionary td, .dictionary th { border-bottom: 1px solid #750800; }” |
小无编辑摘要 |
||
(未显示同一用户的1个中间版本) | |||
第2行: | 第2行: | ||
width: min-content; | width: min-content; | ||
} | } | ||
.home-card p em { | .home-card p em { | ||
display: none; | display: none; | ||
} | } | ||
.dictionary { | .dictionary { | ||
border-collapse: collapse; | border-collapse: collapse; | ||
white-space: nowrap; | white-space: nowrap; | ||
} | } | ||
.dictionary th { | .dictionary th { | ||
background-color: | background-color: var(--color-Dic-Theme); | ||
color: | color: var(--color-Dic-Title); | ||
border-bottom-width: 0; | border-bottom-width: 0; | ||
font-size: 1.05em; | font-size: 1.05em; | ||
第17行: | 第20行: | ||
text-align: center; | text-align: center; | ||
} | } | ||
.dictionary td { | .dictionary td { | ||
color: | color: var(--color-base--emphasized); | ||
font-size: 1em; | font-size: 1em; | ||
padding: 5px 10px; | padding: 5px 10px; | ||
} | } | ||
.dictionary td, .dictionary th { | .dictionary td, .dictionary th { | ||
border-bottom: 1px solid # | border-bottom: 1px solid var(--color-Dic-Theme); | ||
} | |||
h2#dic-h2+section>p { | |||
display: none; | |||
} | } |
2024年12月13日 (五) 16:06的最新版本
.home-card {
width: min-content;
}
.home-card p em {
display: none;
}
.dictionary {
border-collapse: collapse;
white-space: nowrap;
}
.dictionary th {
background-color: var(--color-Dic-Theme);
color: var(--color-Dic-Title);
border-bottom-width: 0;
font-size: 1.05em;
padding: 5px 10px;
text-align: center;
}
.dictionary td {
color: var(--color-base--emphasized);
font-size: 1em;
padding: 5px 10px;
}
.dictionary td, .dictionary th {
border-bottom: 1px solid var(--color-Dic-Theme);
}
h2#dic-h2+section>p {
display: none;
}