Site du proximo, utilisé pour gérer le stock.
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.

categories.css 454B

123456789101112131415161718192021222324252627282930313233
  1. #dataList {
  2. list-style: none;
  3. margin: auto;
  4. padding: 0;
  5. }
  6. #dataList li {
  7. text-align: center;
  8. height: 50px;
  9. line-height: 50px;
  10. display: flex;
  11. cursor: pointer;
  12. transition: 0.2s;
  13. padding: 0 20px 0 20px;
  14. }
  15. #dataList li:hover {
  16. background-color: #e5e5e5;
  17. }
  18. #dataList li div {
  19. margin: auto;
  20. display: flex;
  21. }
  22. #listContainer {
  23. display: flex;
  24. margin: 20px 0 20px 0;
  25. }
  26. .mdi {
  27. font-size: 2rem;
  28. }