Files
xdd-uniapp-new/assets/css/v12-style.less
T
2024-08-26 11:49:54 +08:00

45 lines
799 B
Plaintext

/*================变量==================*/
@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;
}