We Recommend

The Definitive Guide to Django The Definitive Guide to Django
In The Definitive Guide to Django: Web Development Done Right, Adrian Holovaty, one of Django’s creators, and Django lead developer Jacob Kaplan–Moss show you how they use this framework to create award–winning web sites.


Posted By

designerd on 06/26/08


Tagged

textmate Pager paginator


Versions (?)


paginator


Published in: Other 


  1.  
  2. /*paginator*/
  3.  
  4.  
  5. .paginator {
  6. font-size:11px;
  7. margin:0px;
  8. padding: 20px;
  9. text-align:center;
  10. font-weight: bold;
  11. }
  12. .paginator a, .this-page {
  13. background:#FFFFFF;
  14. font-size:11px;
  15. margin:0pt 3px 0pt 0pt;
  16. padding:2px 4px 2px 5px;
  17. text-decoration:none;
  18. cursor: hand;
  19. cursor: pointer;
  20. }
  21. .paginator .this-page {
  22. background:#333;
  23. border-color:#999999;
  24. color:#FFFFFF;
  25. font-weight:bold;
  26. margin:4px 3px 0pt 0pt;
  27. padding:2px 4px 2px 5px;
  28. }
  29. .paginator a:hover {
  30. background:#333;
  31. color:#FFFFFF;
  32. text-decoration:none;
  33. }
  34.  
  35. <div class="paginator">
  36. <a title="Vorige pagina">&laquo;</a>
  37. <a title="1">1</a>
  38. <span class="this-page">2</span>
  39. <a title="3">3</a>
  40. <a title="4">4</a>
  41. <a title="Volgende pagina">&raquo;</a>
  42. </div>
  43.  

Report this snippet 

You need to login to post a comment.