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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #dataList {
  2. list-style: none;
  3. margin: auto;
  4. padding: 0;
  5. }
  6. #dataList li {
  7. height: 50px;
  8. line-height: 50px;
  9. display: flex;
  10. cursor: pointer;
  11. transition: 0.2s;
  12. padding: 0 20px 0 20px;
  13. }
  14. #dataList li:hover {
  15. background-color: #e5e5e5;
  16. }
  17. #dataList li div {
  18. margin: auto;
  19. display: flex;
  20. width: 100%;
  21. }
  22. #dataList li div span {
  23. margin-right: 5px;
  24. height: 50px;
  25. }
  26. #listContainer {
  27. display: flex;
  28. margin: 20px 0 20px 0;
  29. }
  30. .mdi {
  31. font-size: 2rem;
  32. }
  33. .list-name {
  34. font-weight: bold;
  35. width: 150px;
  36. height: 50px;
  37. overflow: hidden;
  38. }
  39. .list-description {
  40. width: 200px;
  41. height: 50px;
  42. overflow: hidden;
  43. }
  44. .list-price {
  45. width: 70px;
  46. text-align: center;
  47. }
  48. .list-code {
  49. color: #8e8e8e;
  50. width: 200px;
  51. text-align: right;
  52. }
  53. .list-image img {
  54. width: 50px;
  55. height: 50px;
  56. }