You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
36 lines
1.1 KiB
/** |
|
列表项的less,其中用到了部分FineUI提供的字号,颜色常量,还有border-radius,box-shadow方法等.请选择性使用.不强制要求 |
|
*/ |
|
.my-todolist-header { |
|
background-color: #3d4d66; |
|
} |
|
.my-todolist-header .my-todolist-title { |
|
font-size: 22px; |
|
color: #FFF; |
|
} |
|
.my-todolist-header .my-todolist-header-editor { |
|
background-color: #FFF; |
|
-webkit-border-radius: 5px; |
|
-moz-border-radius: 5px; |
|
border-radius: 5px; |
|
} |
|
/** |
|
列表项的less,其中用到了部分FineUI提供的字号,颜色常量,还有border-radius方法等.请选择性使用.不强制要求 |
|
*/ |
|
.my-todolist-list .my-todolist-list-text { |
|
font-size: 16px; |
|
font-weight: bold; |
|
} |
|
.my-todolist-list .my-todolist-list-count-container { |
|
-webkit-border-radius: 10px; |
|
-moz-border-radius: 10px; |
|
border-radius: 10px; |
|
background-color: #3d4d66; |
|
color: #ffffff; |
|
} |
|
/** |
|
列表项的less,其中用到了部分FineUI提供的字号,颜色常量,还有border-radius,box-shadow方法等.请选择性使用.不强制要求 |
|
*/ |
|
.my-todolist-background { |
|
background-color: #f7f8fa; |
|
}
|
|
|