product.css 778 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. .products-wrapper{
  2. margin-bottom: 40px;
  3. display: flex;
  4. flex-wrap: wrap;
  5. justify-content: space-between;
  6. row-gap: 40px;
  7. }
  8. .product__link{
  9. text-decoration: none;
  10. display: inline-block;
  11. transition: opasity 0.4s ease-in;
  12. }
  13. .product__link:hover{
  14. opacity: 0.8;
  15. }
  16. .product{
  17. text-align: center;
  18. max-width: 270px;
  19. }
  20. .product__img{
  21. display: block;
  22. margin-bottom: 12px;
  23. }
  24. .product__title{
  25. margin: 0;
  26. margin-bottom: 12px;
  27. font-family: 'Playfair Display', serif;
  28. font-style: normal;
  29. font-weight: normal;
  30. font-size: 20px;
  31. line-height: 27px;
  32. color: #000000;
  33. }
  34. .product__price{
  35. font-size: 14px;
  36. line-height: 19px;
  37. text-transform: uppercase;
  38. }
  39. .product__price-old{
  40. color: #999999;
  41. margin-right: 10px;
  42. }
  43. .product__price-new{
  44. font-weight: bold;
  45. color: #F72464;
  46. }