26 lines
557 B
CSS
26 lines
557 B
CSS
.pagination .pages > a, .pagination .pages > span {
|
|
position: relative;
|
|
border: none;
|
|
color: #ACAAA6;
|
|
background: #EBEBEB;
|
|
width: 40px;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
border-radius: 5px;
|
|
}
|
|
.pagination .pages > a:focus {
|
|
background: #FFF;
|
|
}
|
|
.pagination .pages > a:focus:before {
|
|
content: '';
|
|
position: absolute;
|
|
left: 0; top: 0; right: 0; bottom: 0;
|
|
border: .1875rem solid #BBB;
|
|
border-radius: 5px;
|
|
}
|
|
.pagination .pages .current-page {
|
|
background: #BBB;
|
|
color: #FFF;
|
|
font-weight: bold;
|
|
}
|