demo.css 516 B

12345678910111213141516171819202122232425
  1. .paginate, .current, .inactivePrev, .inactiveNext, .prev, .next {
  2. font-family: Verdana,Helvetica,Arial,sans-serif;
  3. font-size:12px;
  4. border:1px solid #D8D8D8;
  5. float:left;
  6. height:20px;
  7. line-height:20px;
  8. margin-right:2px;
  9. overflow:hidden;
  10. padding:0 6px;
  11. text-decoration:none;
  12. }
  13. a:hover .paginate{
  14. border-color:#006699;
  15. }
  16. .current {
  17. border-color:#006699;
  18. background-color:#006699;
  19. color:#fff;
  20. font-weight:bold;
  21. }
  22. .inactivePrev, .inactiveNext{
  23. color:#999;
  24. }