68 lines
784 B
CSS
68 lines
784 B
CSS
/*颜色类型css*/
|
|
/*字体颜色 start*/
|
|
.darkturquoise {
|
|
color: darkturquoise !important;
|
|
}
|
|
|
|
.blue {
|
|
color: #4975fd !important;
|
|
}
|
|
|
|
.green {
|
|
color: #3e8e43 !important;
|
|
}
|
|
|
|
.red {
|
|
color: red !important;
|
|
}
|
|
|
|
.orange {
|
|
color: #f9ca1b !important;
|
|
}
|
|
|
|
.redOrange {
|
|
color: #f2891b !important;
|
|
}
|
|
|
|
.white {
|
|
color: white;
|
|
}
|
|
.black{
|
|
color: black;
|
|
}
|
|
.brown {
|
|
color: #6e3c14;
|
|
}
|
|
|
|
.lightSlateGray {
|
|
color: #778899;
|
|
}
|
|
|
|
.slateGray {
|
|
color: #708090;
|
|
}
|
|
|
|
.shiFengGreen {
|
|
color: #42c6c6;
|
|
}
|
|
|
|
/*字体颜色 end*/
|
|
|
|
|
|
/*背景 start*/
|
|
.background-white {
|
|
background-color: white;
|
|
}
|
|
|
|
.background-red2 {
|
|
background-color: #df4e44;
|
|
}
|
|
.background-f6f6f6{
|
|
background-color: #f6f6f6;
|
|
}
|
|
|
|
.background-fafafa{
|
|
background-color: #fafafa;
|
|
}
|
|
/*背景 end*/
|