jqpagination.css 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. @charset "UTF-8";
  2. .pagination { display: inline-block; border: 1px solid #CDCDCD; border-radius: 3px; }
  3. .pagination a {
  4. display: block; float: left;
  5. width: 20px; height: 20px;
  6. outline: none;
  7. border-right: 1px solid #CDCDCD;
  8. border-left: 1px solid #CDCDCD;
  9. color: #555555;
  10. vertical-align: middle;
  11. text-align: center;
  12. text-decoration: none;
  13. font-weight: bold;
  14. font-size: 16px;
  15. font-family: Times, 'Times New Roman', Georgia, Palatino;
  16. background-color: #f3f3f3;
  17. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f3f3f3), color-stop(100%, lightgrey));
  18. background-image: -webkit-linear-gradient(#f3f3f3, lightgrey);
  19. background-image: linear-gradient(#f3f3f3, lightgrey); }
  20. .pagination a:hover, .pagination a:focus, .pagination a:active {
  21. background-color: #cecece;
  22. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e4e4e4), color-stop(100%, #cecece));
  23. background-image: -webkit-linear-gradient(#e4e4e4, #cecece);
  24. background-image: linear-gradient(#e4e4e4, #cecece); }
  25. .pagination a.disabled, .pagination a.disabled:hover, .pagination a.disabled:focus, .pagination a.disabled:active {
  26. background-color: #f3f3f3;
  27. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f3f3f3), color-stop(100%, lightgrey));
  28. background-image: -webkit-linear-gradient(#f3f3f3, lightgrey);
  29. background-image: linear-gradient(#f3f3f3, lightgrey);
  30. color: #A8A8A8;
  31. cursor: default; }
  32. .pagination a:first-child { border: none; border-radius: 2px 0 0 2px; }
  33. .pagination a:last-child { border: none; border-radius: 0 2px 2px 0; }
  34. .pagination input {
  35. float: left; margin: 0; padding: 0; width: 120px; height: 20px;
  36. outline: none; border: none; vertical-align: middle; text-align: center; }
  37. .gigantic.pagination { margin: 30px 10px; }
  38. /* 分页箭头 */
  39. .gigantic.pagination a { height: 30px; width: 30px; font-size: 30px; line-height: 30px; }
  40. /* 分页内容 */
  41. .gigantic.pagination input { width: 180px; height: 30px; font-size: 20px; }
  42. .log {
  43. display: none;
  44. background-color: #EDEDED;
  45. border: 1px solid #B4B4B4;
  46. height: 300px;
  47. width: 524px;
  48. overflow: auto;
  49. margin-left: 0;
  50. list-style: none;
  51. padding: 10px; }
  52. .log li {
  53. margin-top: 0;
  54. margin-bottom: 5px; }