admin/static/yunshop/css/global.css

36 lines
491 B
CSS

/* 全局背景颜色 */
body {
background: #eff3f6;
}
/* 基础样式 */
.font-style{
/* color:#000;
opacity: .8;
font-size:13px;
font-family:"黑体"; */
}
/* 设置背景为白色 */
.all {
padding: 10px;
margin-top: 20px;
box-sizing: border-box;
background: white;
}
/* 小星星 */
.asterisk {
position: relative;
}
.asterisk>.el-form-item__label::before {
content: "*";
color: red;
font-size: 13px;
position: absolute;
top: -3px;
left: -6.5px;
}