_pagination.css
1012 Bytes
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
.blk-pagination {
width: 500px;
padding: 0;
text-align: center;
a {
display: inline-block;
font-size: 14px;
line-height: 26px;
width: 26px;
height: 26px;
&:first-child {
margin-right: 10px;
border: 2px solid #1b1b1b;
&:hover {
background-color: #1b1b1b;
cursor: pointer;
color: #fff;
}
}
&:last-child {
margin-left: 10px;
border: 2px solid #1b1b1b;
&:hover {
background-color: #1b1b1b;
cursor: pointer;
color: #fff;
}
}
}
.active {
background-color: #1b1b1b;
color: #fff;
}
i {
font-size: 14px;
position: relative;
top: -1px;
}
.pre-page,
.next-page {
line-height: 23px;
width: 26px;
height: 26px;
font-weight: 700;
}
}