您好,
我想更改我的网站的背景颜色,但仅限于帖子/主题。
控制背景颜色的标签是 html
但是 html 标签中没有用于帖子的特定类。
如果我使用此代码,它会起作用:
html .archetype-regular {
background-color: #F5F5F5;
}
但这会干扰我正在使用的 @Don 提供的另一段代码,该代码用于为 .topic-body 使用不同的颜色:
.topic-body {
background-color: #fff;
&.highlighted {
animation: background-fade-highlight-custom 2.5s ease-out;
}
}
@keyframes background-fade-highlight-custom {
0% {
background-color: var(--tertiary-low);
}
100% {
background-color: #fff;
}
}
我该怎么办?
请帮忙。