Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. .container {
  2. display: flex;
  3. flex-direction: column
  4. }
  5.  
  6. .row {
  7. display: flex;
  8. flex: 1;
  9. flex-direction: row;
  10. text-align: center;
  11. }
  12.  
  13. .product-item {
  14. border: 1px solid #000;
  15. border-radius: 5px;
  16. margin: 5px;
  17. padding: 8px;
  18. }
  19.  
  20. .product-item-image {
  21. max-width: 250px;
  22. }
  23.  
  24. @media (max-width: 600px) {
  25. .row {
  26. flex-direction: column
  27. }
  28.  
  29. .product-item {
  30. display: flex;
  31. align-items: center;
  32. justify-content: left;
  33. }
  34.  
  35. .product-item-image {
  36. width: 50%;
  37. }
  38.  
  39. .product-item-title {
  40. margin: 0 auto;
  41. font-size: 38px;
  42. }
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement