page.css 867 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. list-style: none;
  5. }
  6. .containe {
  7. width: 500px;
  8. height: 30px;
  9. margin: 20px;
  10. /* background-color: #ccc; */
  11. display: flex;
  12. justify-content: space-between;
  13. align-items: center;
  14. }
  15. .containe li {
  16. min-width: 30px;
  17. height: 30px;
  18. color: rgb(146, 146, 219);
  19. border: 1px solid rgb(146, 146, 219);
  20. border-radius: 3px;
  21. text-align: center;
  22. line-height: 30px;
  23. margin-left: 10px;
  24. cursor: pointer;
  25. user-select: none;
  26. }
  27. .containe li:hover {
  28. background-color: rgb(146, 146, 219);
  29. color: #fff;
  30. }
  31. .containe li.active {
  32. background-color: rgb(146, 146, 219);
  33. color: #fff;
  34. }
  35. .containe li.ctrl {
  36. width: 80px;
  37. height: 30px;
  38. }
  39. .containe li.ctrl.disabled {
  40. background-color: #eee;
  41. color: #cccccc;
  42. border: 1px solid #ccc;
  43. cursor: not-allowed;
  44. }