blob: c70877b155b0e336b17b9e0b088dd2eeb7317a63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
.is-button-grey, .pagination-link {
background-color: #7a7a7a;
border-color: transparent;
color: rgba(0, 0, 0, 0.7);
}
.button:hover, .pagination .is-current, .pagination-link:hover {
background-color: #dd7325;
border-color: transparent;
color: whitesmoke;
}
.button:focus {
box-shadow: none;
border-color: transparent;
}
|