blob: 53937fcb6828b38072c3359b6d02c9ff6f2db633 (
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
40
41
42
43
44
45
46
47
48
49
50
51
|
.pagination {
background: white;
cursor: default;
> a, > span, > em{
padding: 0.2em 0.5em;
display: block;
float: left;
margin-right: 1px;
}
> .disabled{
color: #999999;
border: 1px solid #dddddd;
}
> .current{
font-style: normal;
font-weight: bold;
background: #2e6ab1;
color: white;
border: 1px solid #2e6ab1;
}
> a{
text-decoration: none;
color: #105cb6;
border: 1px solid #9aafe5;
&:hover, &:focus{
color: #000033;
border-color: #000033;
}
}
.page_info{
padding: 0.4em 0.6em
}
&:after{
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;}
* html & {
height: 1%;}
*:first-child+html & {
overflow: hidden;}
}
|