Advertisement
thorbj

jqFlick.css

Feb 1st, 2013
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.90 KB | None | 0 0
  1.  
  2. .flickrSliderHolder{
  3.     position:relative;
  4.     overflow:hidden;
  5. }
  6.  
  7. .flickrSliderHolder ul{
  8.     position:absolute;
  9.     height:100%;
  10.     list-style:none;
  11.     left: -200px;
  12. }
  13.  
  14. .flickrSliderHolder ul li{
  15.     float:left;
  16.     height:100%;
  17.     background-repeat:no-repeat;
  18.     background-position:center center;
  19. }
  20.  
  21. .flickrSliderHolder .arrows{
  22.     position:absolute;
  23.     right:0;
  24.     bottom:0;
  25. }
  26.  
  27. .flickrSliderHolder .arrows a{
  28.     width:22px;
  29.     height:22px;
  30.     float:left;
  31.     background:url('arrows.png') no-repeat top left;
  32.     text-decoration:none;
  33.     outline:none;
  34.     border:none;
  35. }
  36.  
  37. .flickrSliderHolder a.previous:hover{
  38.     background-position:left bottom;
  39. }
  40.  
  41. .flickrSliderHolder a.next{
  42.     margin-left:-1px;
  43.     background-position:top right;
  44. }
  45.  
  46. .flickrSliderHolder a.next:hover{
  47.     background-position:bottom right;
  48. }
  49.  
  50. .flickrSliderHolder .caption{
  51.     font-size:13px;
  52.     line-height: 22px;
  53.     position:absolute;
  54.     bottom:0;
  55.     left:0;
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement