Advertisement
Guest User

Untitled

a guest
Nov 26th, 2015
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. <nav class="more">
  2. {% for banner in banners %}
  3. <a href="{{banner.url}}" target="{{banner.target}}" class="products-selector">
  4. <div class="img-wrapper" style="background-image: url(/{{banner.uploadDir}}/{{banner.image}})"></div>
  5. <span class="info-wrapper">
  6. <span class="info">
  7. {{banner.title}}
  8. <span class="icon-container">
  9. <img src="/{{banner.uploadDir}}/{{banner.icon}}" alt="">
  10. </span>
  11. </span>
  12. </span>
  13. </a>
  14. {% endfor %}
  15. </nav>
  16.  
  17.  
  18.  
  19. #content-wrapper .inner main .holder .more a .info-wrapper .icon-container {
  20. position: absolute;
  21. top: 0;
  22. right: 0;
  23.  
  24. width: 50px;
  25. height: 100%;
  26.  
  27. content: "";
  28.  
  29. border: none;
  30. outline: none;
  31. background: #FFEF10;
  32. box-shadow: none;
  33. }
  34. #content-wrapper .inner main .holder .more a .info-wrapper .icon-container img {
  35. position: absolute;
  36. top: 0;
  37. right: 0;
  38. bottom: 0;
  39. left: 0;
  40.  
  41. margin: auto;
  42. }
  43. #content-wrapper .inner main .holder .more a .info-wrapper .icon-container::after {
  44. content: none !important;
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement