fnState.wxss 700 B

123456789101112131415161718192021222324252627282930313233343536
  1. /* components/fnState.wxss */
  2. /* state: 0 未实现 1 已实现 2 开发中 3 已废弃 4 实现未测试 5 实现待优化 */
  3. .fnState__item{
  4. width: 100%;
  5. height: auto;
  6. display: flex;
  7. justify-content: center;
  8. align-items: center;
  9. padding: 2px;
  10. box-sizing: border-box;
  11. /* background-color: #f5f5f5; */
  12. /* box-shadow: 1px 1px 5px black; */
  13. }
  14. .fnState__item--not{
  15. color: #7a7777;
  16. }
  17. .fnState__item--done{
  18. color: #09db4f;
  19. font-size: x-large;
  20. }
  21. .fnState__item--dev{
  22. background-color: #f5f5f5;
  23. color: rgb(230, 230, 22);
  24. }
  25. .fnState__item--abandon{
  26. color: #eb0000;
  27. font-size: x-large;
  28. }
  29. .fnState__item--test{
  30. color: #7a7777;
  31. }
  32. .fnState__item--optimize{
  33. color: #7a7777;
  34. }