blob: 5387af8113e741c32e2f6854e42a1d5fe96ccdef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
.pagination {
display: grid;
grid-template-columns: 100px 1fr 100px;
margin: 50px 0 0;
font-size: 16px;
.previous,
.next {
text-decoration: none;
color: var(--grey-555);
&:hover {
text-decoration: underline;
}
}
.page_number {
text-align: center;
color: var(--grey-ccc);
}
}
|