products.css 679 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. ul.product-list {
  2. list-style: none;
  3. text-align: center;
  4. }
  5. li.product-details {
  6. width: 30%;
  7. float: left;
  8. }
  9. a.product-link {
  10. opacity: 0.75;
  11. text-decoration: none;
  12. color: #000;
  13. transition: ease-in 0.2s;
  14. }
  15. a.product-link:hover {
  16. opacity: 1;
  17. }
  18. .product-name {
  19. text-transform: uppercase;
  20. letter-spacing: 1px;
  21. font-size: 12px;
  22. margin-bottom: 5px;
  23. }
  24. .product-container {
  25. width: 80%;
  26. margin: 0 auto;
  27. }
  28. .product-description {
  29. font-size: 12px;
  30. opacity: 0.5
  31. }
  32. @media screen and (max-width: 47.2em) {
  33. li.product-details {
  34. width: 100%;
  35. float: left;
  36. }
  37. }