Style: 12期通用样式表

This commit is contained in:
linxi
2024-08-26 11:49:54 +08:00
parent 5fc4159e08
commit 77453380fa
+44
View File
@@ -0,0 +1,44 @@
/*================变量==================*/
@primary-color: #C52733;
@dark-color: #333333;
@white-color: #fff;
/*=====================================*/
.v12-primary{
background-color: @primary-color;
background: @primary-color;
}
.v12-primary-text{
color: @primary-color;
}
.v12-dark{
background: @dark-color !important;
background-color: @dark-color !important;
}
.v12-dark-text{
color: @dark-color !important;
}
.v12-white{
background-color: @white-color;
background: @white-color;
}
.v12-white-color{
background-color: @white-color;
background: @white-color;
}
.generateFontSize(@i) when (@i <= 80) {
.v12-font-@{i} {
font-size: @i * 1rpx !important;
}
.generateFontSize(@i + 4);
}
.generateFontSize(20);
.v12-font-bold{
font-weight: bold !important;
}