Advertisement
asadsuman

Numeric Pagination CSS

Mar 20th, 2014
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <!--------------------------------Numeric Pagination css----------------------------------------->
  2. /*pagination*/
  3. .navigation li a,
  4. .navigation li a:hover,
  5. .navigation li.active a,
  6. .navigation li.disabled {
  7. color: #fff;
  8. text-decoration:none;
  9. }
  10.  
  11. .navigation li {
  12. display: inline;
  13. }
  14.  
  15. .navigation li a,
  16. .navigation li a:hover,
  17. .navigation li.active a,
  18. .navigation li.disabled {
  19. background-color: #6FB7E9;
  20. border-radius: 3px;
  21. cursor: pointer;
  22. padding: 12px;
  23. padding: 0.75rem;
  24. }
  25.  
  26. .navigation li a:hover,
  27. .navigation li.active a {
  28. background-color: #3C8DC5;
  29. }
  30. #respond input[type="text"] {
  31. border-radius: 5px;
  32. }
  33. #respond label {
  34. font-family:Droid Sans;
  35. margin-left:10px;
  36. }
  37. /*
  38. Past above css to ur theme stylesheet
  39. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement