lilishop-ui/seller/src/styles/common.scss

136 lines
1.6 KiB
SCSS
Raw Normal View History

2021-05-13 10:56:04 +08:00
//自动移滚动条样式
::-webkit-scrollbar {
2021-05-13 10:56:04 +08:00
width: 1px;
height: 5px;
}
::-webkit-scrollbar-thumb {
2021-05-13 10:56:04 +08:00
border-radius: 1em;
background-color: rgba(50, 50, 50, 0.3);
2021-05-13 10:56:04 +08:00
}
::-webkit-scrollbar-track {
2021-05-13 10:56:04 +08:00
border-radius: 1em;
background-color: rgba(50, 50, 50, 0.1);
2021-05-13 10:56:04 +08:00
}
.flex {
2021-05-13 10:56:04 +08:00
display: flex !important;
}
.flex-j-c {
2021-05-13 10:56:04 +08:00
justify-content: center;
}
.flex-a-c {
2021-05-13 10:56:04 +08:00
align-items: center;
}
.width_1200 {
width: 1200px;
2021-05-13 10:56:04 +08:00
}
.width_800 {
width: 800px;
2021-05-13 10:56:04 +08:00
}
.width_400 {
width: 400px;
2021-05-13 10:56:04 +08:00
}
.width_300 {
width: 300px;
2021-05-13 10:56:04 +08:00
}
.width_200 {
width: 200px;
}
.width_100 {
width: 100px;
2021-05-13 10:56:04 +08:00
}
.fz_12 {
font-size: 12px;
}
.fz_14 {
font-size: 14px;
}
.fz_16 {
font-size: 16px;
}
.fz_18 {
font-size: 18px;
}
.fw_bold {
font-weight: bold;
}
2021-05-13 10:56:04 +08:00
.mb_20 {
margin-bottom: 20px;
}
.mt_20 {
margin-top: 20px;
}
.ml_20 {
margin-left: 20px;
}
.mr_20 {
margin-right: 20px;
}
2021-05-13 10:56:04 +08:00
.mb_10 {
margin-bottom: 10px;
}
.mt_10 {
margin-top: 10px;
}
.ml_10 {
margin-left: 10px;
}
.mr_10 {
margin-right: 10px;
}
2021-05-13 10:56:04 +08:00
.pb_20 {
padding-bottom: 20px;
}
.pt_20 {
padding-top: 20px;
}
.pl_20 {
padding-left: 20px;
}
.pr_20 {
padding-right: 20px;
}
2021-05-13 10:56:04 +08:00
.pb_10 {
padding-bottom: 10px;
}
.pt_10 {
padding-top: 10px;
}
.pl_10 {
padding-left: 10px;
}
.pr_10 {
padding-right: 10px;
}
2021-05-13 10:56:04 +08:00
ul,
li {
list-style: none;
2021-05-13 10:56:04 +08:00
}
.ellipsis {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
2021-05-13 10:56:04 +08:00
}
.hover-pointer {
cursor: pointer;
}
2021-05-13 10:56:04 +08:00
// 主题颜色
$success_color: #68cabe;
$warning_color: #fa6419;
$error_color: #ff3c2a;
2023-03-22 16:22:01 +08:00
$theme_color: #F31947;
.theme_color {
color: $theme_color !important;
}
$bg_color: #f1f6fa;