page.css
1 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#pager
{
float:left;
width:710px;
height:50px;
}
#pager ul
{
float:right;
list-style:none;
}
#pager ul li
{
float:left;
margin:1px;
padding:1px 6px;
cursor:pointer;
width:10px;
height:10px;
}
#pager ul li a
{
display: inline-block;
height:12px;
line-height:12px;
cursor: pointer;
}
.curLi
{
font-size:18px;
font-weight:bold;
color:red;
}
#prePage a{
width: 14px;
display: inline-block;
height: 10px;
background-image: url('../images/page/prepage.png');
background-size: cover;
}
#firstPage a{
width: 14px;
display: inline-block;
height: 10px;
background-image: url('../images/page/first.png');
background-size: cover;
}
#lastPage a{
width: 14px;
display: inline-block;
height: 10px;
background-image: url('../images/page/endpage.png');
background-size: cover;
}
#nextPage a{
width: 14px;
display: inline-block;
height: 10px;
background-image: url('../images/page/nextpage.png');
background-size: cover;
}