Guest User

Untitled

a guest
Jan 15th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. @media only screen and (max-width: 500px) {
  2. .IDX-resultCellContainer {
  3. display: flex;
  4. flex-direction: column;
  5. }
  6. .IDX-resultsCell {
  7. width: 100%;
  8. }
  9. .IDX-resultsPhoto {
  10. display: flex;
  11. justify-content: center;
  12. align-items: center;
  13. }
  14. .IDX-grid .IDX-resultsPhotoImg {
  15. left: unset;
  16. object-fit: cover;
  17. width: 100%;
  18. }
  19. }
  20.  
  21. @media only screen and (min-width: 500px) {
  22. .IDX-resultCellContainer:before {
  23. content: none;
  24. }
  25. .IDX-resultCellContainer {
  26. display: flex;
  27. flex-flow: row wrap;
  28. margin: auto;
  29. justify-content: space-around;
  30. }
  31. .IDX-resultsCell {
  32. width: 45%;
  33. }
  34. .IDX-resultsPhoto {
  35. display: flex;
  36. justify-content: center;
  37. align-items: center;
  38. }
  39. .IDX-grid .IDX-resultsPhotoImg {
  40. left: unset;
  41. object-fit: cover;
  42. width: 100%;
  43. }
  44. }
  45.  
  46. @media only screen and (min-width: 800px) {
  47. .IDX-resultCellContainer:before {
  48. content: none;
  49. }
  50. .IDX-resultCellContainer {
  51. display: flex;
  52. flex-flow: row wrap;
  53. margin: auto;
  54. justify-content: space-around;
  55. }
  56. .IDX-resultsCell {
  57. width: 31%;
  58. }
  59. .IDX-resultsPhoto {
  60. display: flex;
  61. justify-content: center;
  62. align-items: center;
  63. }
  64. .IDX-grid .IDX-resultsPhotoImg {
  65. left: unset;
  66. object-fit: cover;
  67. width: 100%;
  68. }
  69. }
  70.  
  71. @media only screen and (min-width: 1200px) {
  72. .IDX-resultCellContainer:before {
  73. content: none;
  74. }
  75. .IDX-resultCellContainer {
  76. display: flex;
  77. flex-flow: row wrap;
  78. margin: auto;
  79. justify-content: space-around;
  80. }
  81. .IDX-resultsCell {
  82. width: 23%;
  83. }
  84. .IDX-resultsPhoto {
  85. display: flex;
  86. justify-content: center;
  87. align-items: center;
  88. }
  89. .IDX-grid .IDX-resultsPhotoImg {
  90. left: unset;
  91. object-fit: cover;
  92. width: 100%;
  93. }
  94. }
Add Comment
Please, Sign In to add comment