kind.css 685 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. html,body{
  2. width: 100%;
  3. height: 100%;
  4. }
  5. #app{
  6. display: flex;
  7. flex-direction: column;
  8. width: 100%;
  9. height: 100%;
  10. }
  11. .list{
  12. display: flex;
  13. flex: 1;
  14. background-color: #141414;
  15. justify-content: center;
  16. }
  17. .list>ul{
  18. display: flex;
  19. flex-direction: column;
  20. width: 78%;
  21. }
  22. .list>ul>li{
  23. display: flex;
  24. justify-content: center;
  25. align-items: center;
  26. border-bottom: 1px solid #ffffff;
  27. width: 100%;
  28. height: 50px;
  29. }
  30. .list>ul>li>a{
  31. display: flex;
  32. justify-content: center;
  33. align-items: center;
  34. width: 100%;
  35. height: 100%;
  36. font-size: 16px;
  37. color: #ffffff;
  38. }
  39. .list>ul>li>a:hover{
  40. color: #48d23a;
  41. }