39 lines
803 B
CSS
39 lines
803 B
CSS
.line-default {
|
|
color: #aaaaaa;
|
|
}
|
|
|
|
.line-main-color,
|
|
.text-main-color {
|
|
color: #0081ff;
|
|
}
|
|
|
|
.bg-main-color {
|
|
background-color: #0081ff;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.bg-main-color.light {
|
|
color: #0081ff;
|
|
background-color: #cce6ff;
|
|
}
|
|
|
|
.bg-gradual-color {
|
|
background-image: linear-gradient(45deg, #0081ff, #1cbbb4);
|
|
color: #ffffff;
|
|
}
|
|
|
|
switch.main-color[checked] .wx-switch-input,
|
|
checkbox.main-color[checked] .wx-checkbox-input,
|
|
radio.main-color[checked] .wx-radio-input,
|
|
switch.main-color.checked .uni-switch-input,
|
|
checkbox.main-color.checked .uni-checkbox-input,
|
|
radio.main-color.checked .uni-radio-input {
|
|
background-color: #0081ff !important;
|
|
border-color: #0081ff !important;
|
|
color: #ffffff !important;
|
|
}
|
|
|
|
.oper-bar button:last-child {
|
|
background-color: #0081ff;
|
|
color: #ffffff;
|
|
} |