blob: 5ad584e3817c25945d155e16fd982cb2b3a262d3 (
plain)
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
|
.pagination {
font-size: 80%;
text-decoration: none;
margin: 15px auto;
width: 800px;
text-align: center;
}
.pagination a, .pagination .dots, .pagination span.disabled {
box-shadow: 0 0 1px #ddd;
border: 1px solid #ccc;
display: inline-block;
color: #444;
margin-right: 3px;
padding: 6px 8px;
text-decoration: none;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
.pagination a, .pagination .dots {
background: #ccc;
background: -moz-linear-gradient(top, #eee, #ddd);
background: -webkit-linear-gradient(top, #eee, #ddd);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#dddddd');
text-shadow: 0 0 2px #bbb;
}
.pagination span.disabled {
cursor: default;
text-shadow: 0 0 1px #ddd;
}
.pagination a:hover {
background: #ddd;
}
.pagination a.current {
background: #ccc;
background: -moz-linear-gradient(top, #bbb, #ddd);
background: -webkit-linear-gradient(top, #eee, #ddd);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#dddddd');
}
|