You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

130 lines
2.5 KiB

2 years ago
  1. .pagebar {
  2. text-align: center;
  3. font-size: 14px;
  4. position: relative;
  5. display: inline-block;
  6. margin: 0 auto;
  7. width: 100%
  8. }
  9. .m_pagebar {
  10. position: relative;
  11. text-align: center;
  12. margin: 20px auto 0;
  13. height: 100px
  14. }
  15. #pager_info {
  16. position: absolute;
  17. left: 0;
  18. top: 5px;
  19. font-size: 14px
  20. }
  21. .m_pagebar #pager_info {
  22. left: 10px;
  23. position: inherit
  24. }
  25. .m_pagebar .light-theme {
  26. max-width: 390px;
  27. margin: 20px auto 0
  28. }
  29. .light-theme li {
  30. display: inline-block;
  31. margin-bottom: 15px
  32. }
  33. .light-theme a, .light-theme span {
  34. font-size: 14px;
  35. line-height: 20px;
  36. font-weight: 400;
  37. text-align: center;
  38. min-width: 12px;
  39. color: #828282;
  40. padding: 0 3px;
  41. margin: 0 6px 10px;
  42. border-bottom: 3px solid #FFF;
  43. text-decoration: none
  44. }
  45. .m_pagebar .light-theme a, .m_pagebar .light-theme span {
  46. font-size: 12px;
  47. line-height: 15px;
  48. padding: 2px 6px
  49. }
  50. .light-theme a:hover, .light-theme a.active, .light-theme a:focus {
  51. color: #1fc9be
  52. }
  53. .light-theme .current {
  54. border-color: #ee7624;
  55. color: #434343;
  56. font-weight: 500;
  57. padding: 0 3px;
  58. margin: 0 6px
  59. }
  60. .active .prev, .active .next {
  61. display: none
  62. }
  63. .prev, .next {
  64. color: #000 !important;
  65. border-color: #FFF !important;
  66. margin: 0 20px !important
  67. }
  68. .prev:hover, .next:hover {
  69. color: #ee7624 !important;
  70. border-color: #ee7624
  71. }
  72. .m_pagebar .prev, .m_pagebar .next {
  73. margin: 0 10px !important
  74. }
  75. .light-theme .ellipse {
  76. background: none;
  77. border: none;
  78. border-radius: 0;
  79. box-shadow: none;
  80. font-weight: 700;
  81. cursor: default
  82. }
  83. /*------------pager--------------*/
  84. #pager {
  85. color: #666;
  86. overflow: auto;
  87. margin-top: 20px;
  88. text-align: center;
  89. }
  90. #pager span, #pager li {
  91. /*display: inline-block;*/
  92. margin: 0 6px 6px 0;
  93. }
  94. #pager span a, #pager li a {
  95. color: #333;
  96. display: block;
  97. text-decoration: none;
  98. padding: 3px 10px;
  99. border: solid 1px #e0e0e0;
  100. background: #f5f5f5;
  101. border-radius: 3px;
  102. }
  103. #pager span a:hover, #pager li a:hover {
  104. background: #FFF;
  105. box-shadow: 0 0px 5px 0 rgba(0, 0, 0, 0.2);
  106. }
  107. #pager span.current a, #pager span.current a:hover, #pager li.current a, #pager li.current a:hover {
  108. background: none;
  109. color: #666;
  110. border: none;
  111. box-shadow: none;
  112. }