我有一个正在响应的博客模板,如何以较小的分辨率更改正文的背景,我正在尝试以下方法,但它不起作用。
@media (max-width: 30em) {
.post-template {
background-color: @color_01;
}
}
我的身体有课
<body class="post-template">
应用体色样式的 MixIn 如下
.BodyColor () {
background-color: @color_01;
background-image: url(../images/body.jpg);
color: @color_05;
overflow-x: hidden;
background-attachment: fixed;
&:after {
content: ' ';
width: 100%;
height: 50%;
background-color: darken(@color_01, 10%);
.transform(~"skew(-20deg) rotate(-20deg)");
left: 0;
top: 30%;
.opacity(0.5);
position: fixed;
}
}
我想覆盖 .transform 调用,因此较小的分辨率不会出现偏差,因为它渲染速度太慢
但是我已经设置了一些body:after
我想以较小分辨率覆盖的伪类的属性。