home *** CD-ROM | disk | FTP | other *** search
/ Freelog 117 / FreelogNo117-OctobreNovembre2013.iso / Theme / 8GadgetPack / 8GadgetPackSetup.msi / Gadgets.7z / Gadgets / StickyNotesOnline.gadget / Styles / scrollable-buttons.css < prev    next >
Cascading Style Sheet File  |  2011-06-16  |  1KB  |  52 lines

  1.  
  2. /* this makes it possible to add next button beside scrollable */
  3. .scrollable {
  4.     float:left;    
  5. }
  6.  
  7. /* prev, next, prevPage and nextPage buttons */
  8. a.browse {
  9.     background:url(../Images/scrollable/arrow/hori_large.png) no-repeat;
  10.     display:block;
  11.     width:30px;
  12.     height:30px;
  13.     float:left;
  14.     margin:40px 10px;
  15.     cursor:pointer;
  16.     font-size:1px;
  17. }
  18.  
  19. /* right */
  20. a.right                 { background-position: 0 -30px; clear:right; margin-right: 0px;}
  21. a.right:hover         { background-position:-30px -30px; }
  22. a.right:active     { background-position:-60px -30px; } 
  23.  
  24.  
  25. /* left */
  26. a.left                { margin-left: 0px; } 
  27. a.left:hover          { background-position:-30px 0; }
  28. a.left:active      { background-position:-60px 0; }
  29.  
  30. /* up and down */
  31. a.up, a.down        { 
  32.     background:url(../Images/scrollable/arrow/vert_large.png) no-repeat; 
  33.     float: none;
  34.     margin: 10px 50px;
  35. }
  36.  
  37. /* up */
  38. a.up:hover          { background-position:-30px 0; }
  39. a.up:active          { background-position:-60px 0; }
  40.  
  41. /* down */
  42. a.down                 { background-position: 0 -30px; }
  43. a.down:hover          { background-position:-30px -30px; }
  44. a.down:active      { background-position:-60px -30px; } 
  45.  
  46.  
  47. /* disabled navigational button */
  48. a.disabled {
  49.     visibility:hidden !important;        
  50. }     
  51.  
  52.