123456789101112131415161718192021222324252627282930313233343536 |
- /* components/fnState.wxss */
- /* state: 0 未实现 1 已实现 2 开发中 3 已废弃 4 实现未测试 5 实现待优化 */
- .fnState__item{
- width: 100%;
- height: auto;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 2px;
- box-sizing: border-box;
- /* background-color: #f5f5f5; */
- /* box-shadow: 1px 1px 5px black; */
- }
- .fnState__item--not{
- color: #7a7777;
- }
- .fnState__item--done{
- color: #09db4f;
- font-size: x-large;
- }
- .fnState__item--dev{
- background-color: #f5f5f5;
- color: rgb(230, 230, 22);
- }
- .fnState__item--abandon{
- color: #eb0000;
- font-size: x-large;
- }
- .fnState__item--test{
- color: #7a7777;
- }
- .fnState__item--optimize{
- color: #7a7777;
- }
|