146 lines
2.0 KiB
SCSS
146 lines
2.0 KiB
SCSS
@import './variables.scss';
|
|
|
|
@mixin colorBtn($color) {
|
|
background: $color;
|
|
|
|
&:hover {
|
|
color: $color;
|
|
|
|
&:before,
|
|
&:after {
|
|
background: $color;
|
|
}
|
|
}
|
|
}
|
|
|
|
.blue-btn {
|
|
@include colorBtn($blue)
|
|
}
|
|
|
|
.light-blue-btn {
|
|
@include colorBtn($light-blue)
|
|
}
|
|
|
|
.red-btn {
|
|
@include colorBtn($red)
|
|
}
|
|
|
|
.pink-btn {
|
|
@include colorBtn($pink)
|
|
}
|
|
|
|
.green-btn {
|
|
@include colorBtn($green)
|
|
}
|
|
|
|
.tiffany-btn {
|
|
@include colorBtn($tiffany)
|
|
}
|
|
|
|
.yellow-btn {
|
|
@include colorBtn($yellow)
|
|
}
|
|
|
|
.pan-btn {
|
|
font-size: 14px;
|
|
color: #fff;
|
|
padding: 14px 36px;
|
|
border-radius: 8px;
|
|
border: none;
|
|
outline: none;
|
|
transition: 600ms ease all;
|
|
position: relative;
|
|
display: inline-block;
|
|
|
|
&:hover {
|
|
background: #fff;
|
|
|
|
&:before,
|
|
&:after {
|
|
width: 100%;
|
|
transition: 600ms ease all;
|
|
}
|
|
}
|
|
|
|
&:before,
|
|
&:after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
height: 2px;
|
|
width: 0;
|
|
transition: 400ms ease all;
|
|
}
|
|
|
|
&::after {
|
|
right: inherit;
|
|
top: inherit;
|
|
left: 0;
|
|
bottom: 0;
|
|
}
|
|
}
|
|
|
|
.custom-button {
|
|
display: inline-block;
|
|
line-height: 1;
|
|
white-space: nowrap;
|
|
cursor: pointer;
|
|
background: #fff;
|
|
color: #fff;
|
|
-webkit-appearance: none;
|
|
text-align: center;
|
|
box-sizing: border-box;
|
|
outline: 0;
|
|
margin: 0;
|
|
padding: 10px 15px;
|
|
font-size: 14px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
// ================= 教学任务模块操作按钮(灰 / 主色 / 蓝色) =================
|
|
.gray-btn,
|
|
.primary-btn,
|
|
.blue-btn {
|
|
display: inline-block;
|
|
height: 30px;
|
|
line-height: 1;
|
|
padding: 0 15px;
|
|
font-size: 13px;
|
|
border-radius: 4px;
|
|
border: 1px solid transparent;
|
|
cursor: pointer;
|
|
vertical-align: middle;
|
|
white-space: nowrap;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.gray-btn {
|
|
background: #f5f7fa;
|
|
color: #333;
|
|
border-color: #dcdfe6;
|
|
|
|
&:hover {
|
|
background: #e4e7ed;
|
|
}
|
|
}
|
|
|
|
.primary-btn {
|
|
background: #00875a;
|
|
color: #fff;
|
|
|
|
&:hover {
|
|
background: #006b47;
|
|
}
|
|
}
|
|
|
|
.blue-btn {
|
|
background: #3a71a8;
|
|
color: #fff;
|
|
|
|
&:hover {
|
|
background: #2f5e8c;
|
|
color: #fff;
|
|
}
|
|
}
|