Advertisement
Guest User

Untitled

a guest
Dec 17th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.12 KB | None | 0 0
  1. /* Thumbnails Height Fix */
  2. .property-slider-nav .item img { width: 100%; height: 100%; object-fit: cover; }
  3. .property-slider-nav .item { height: 125px; }
  4.  
  5. /* Listing Image Height Fix */
  6. .listing-img-container img { object-fit: cover; }
  7. @media (min-width: 768px) {
  8. .listing-img-container img { height: 260px; }
  9. .grid-layout .listing-img-container img { height: 260px !important; }
  10. }
  11.  
  12. @media (min-width: 992px) {
  13. .listing-img-container img { height: 260px; }
  14. .grid-layout .listing-img-container img { height: 260px !important; }
  15. .fs-listings .grid-layout .listing-img-container img { height: 220px !important; }
  16. }
  17.  
  18. @media (min-width: 1240px) {
  19. .listing-img-container img { height: 260px; }
  20. .grid-layout .listing-img-container img { height: 260px !important; }
  21. .fs-listings .grid-layout .listing-img-container img { height: 240px !important; }
  22. }
  23.  
  24. @media (min-width: 1367px) {
  25. .listing-img-container img { height: 300px; }
  26. .grid-layout .listing-img-container img { height: 300px !important; }
  27. .fs-listings .grid-layout .listing-img-container img { height: 300px !important; }
  28. }
  29.  
  30. @media (max-width: 480px) {
  31. .listing-img-container img { height: 240px; }
  32. .grid-layout .listing-img-container img { height: 240px !important; }
  33. }
  34.  
  35. .map-box .listing-img-container img { height: 200px; }
  36. .listing-item.compact { width: 100%; }
  37.  
  38. body .listing-item.compact li:nth-child(4),
  39. body .listing-item.compact li:nth-child(5) { display: none; }
  40.  
  41. /* Agent Name Lenght */
  42. .listing-footer a {
  43. white-space: nowrap;
  44. overflow: hidden;
  45. text-overflow: ellipsis;
  46. max-width: 160px;
  47. display: inline-block;
  48. }
  49.  
  50. @media (max-width: 1366px) { .listing-footer a { max-width: 130px; } }
  51. @media (max-width: 1240px) { .listing-footer a { max-width: 100px; } }
  52. @media (max-width: 992px) { .listing-footer a { max-width: 150px; } }
  53. @media (max-width: 768px) { .listing-footer a { max-width: 90%; } }
  54.  
  55. .list-layout .listing-footer a { max-width: auto; }
  56.  
  57. /* Full Screen Scrollbar Fix */
  58. body .screen-reader-text { height: 0; width: 0; }
  59.  
  60. /* Blog Image Post Fix */
  61. .blog-page .single-post .wp-post-image,
  62. .blog-page .post-img img {
  63. object-fit: cover;
  64. width: 100%;
  65. height: 450px;
  66. }
  67.  
  68. @media (max-width: 1366px) { .blog-page .single-post .wp-post-image, .blog-page .post-img img { height: 380px; } }
  69. @media (max-width: 480px) { .blog-page .single-post .wp-post-image, .blog-page .post-img img { height: 220px; } }
  70.  
  71. .findeo-related-posts .post-img img { height: auto; }
  72.  
  73. /* Footer Links Fix */
  74. .footer-widget li a { padding: 0 0 9px 4px; }
  75. .footer-widget li a:hover { padding-left: 10px; }
  76.  
  77. /* Home Alternative Search Min&Max Inputs Fix */
  78.  
  79. /* Home Search Fix */
  80. .parallax .search-container .select-input .select { left: 0; }
  81. .parallax .search-container .data-unit { top: 27px; background-color: #fff; }
  82.  
  83. /* Breadcrumbs Fix */
  84. #breadcrumbs { width: 50%; float: right; text-align: right }
  85. #breadcrumbs li,
  86. #breadcrumbs li span {margin-top: 0; margin-bottom: 0; padding-top: 0; padding-bottom: 0; line-height: 24px}
  87.  
  88. @media (max-width: 768px) {
  89. #breadcrumbs { width: 100%; float: right; text-align: left }
  90. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement