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 326B

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