1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| .pagination {
| font-size: 80%;
| }
|
| .pagination a {
| text-decoration: none;
| border: solid 1px #AAE;
| color: #15B;
| }
|
| .pagination a, .pagination span {
| display: block;
| float: left;
| padding: 0.3em 0.5em;
| margin-right: 5px;
| margin-bottom: 5px;
| min-width:1em;
| text-align:center;
| }
|
| .pagination .current {
| background: #26B;
| color: #fff;
| border: solid 1px #AAE;
| }
|
| .pagination .current.prev, .pagination .current.next{
| color:#999;
| border-color:#999;
| background:#fff;
| }
|
|