Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. /*-- Fakie's Clickable Sidebar Image -
  2. +
  3. + Add only when corresponding image is loaded in community settings > stylesheet
  4. + Update main CSS Header block when this is used
  5. ----*/
  6.  
  7. .side .usertext a[href$='png'],
  8. .side .usertext a[href$='jpg'],
  9. .side .usertext a[href$='jpeg'],
  10. .side .usertext a[href$='gif'],
  11. .side .usertext a[href$='#view'] {
  12. position: static;
  13. display: block;
  14. margin: 0 -10px 15px -15px;
  15. min-width: 300px;
  16. min-height: 70px;
  17. max-width: 310px;
  18. max-height: 300px;
  19. width: auto;
  20. height: 100px; /*desired image height*/
  21. background: transparent url('%%SidebarImage%%') no-repeat 0 0;
  22. font-size: 0;
  23. }
  24.  
  25. .side .usertext a[href$='png']:hover:after,
  26. .side .usertext a[href$='jpg']:hover:after,
  27. .side .usertext a[href$='jpeg']:hover:after,
  28. .side .usertext a[href$='gif']:hover:after,
  29. .side .usertext a[href$='#view']:hover:after {
  30. position: relative;
  31. top: auto;
  32. bottom: -20px;
  33. left: 50%;
  34. display: block;
  35. margin: 0 -105px;
  36. padding: 10px 5px;
  37. max-width: 200px;
  38. border: 1px solid #d2d2d2;
  39. border-radius: 2px;
  40. background: #fbfbfb;
  41. content: attr(title) ' ⇨ ';
  42. text-align: center;
  43. font-weight: bold;
  44. font-size: 12px;
  45. opacity: .8;
  46. }
  47.  
  48. /*-- End Sidebar Image ----*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement