aboutsummaryrefslogtreecommitdiff
path: root/assets/css/components/pagination.css
blob: 8ba927e2c8cfb4054aa9946d203aec1e50853655 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.pagination {
  display: grid;
  grid-template-columns: 100px 1fr 100px;
  margin: 50px 0 0;
  font-size: 16px;
}

.pagination .previous,
.pagination  .next {
  text-decoration: none;
  color: var(--grey-555);
}

.pagination .previous:hover,
.pagination .next:hover {
  text-decoration: underline;
}

.pagination .page_number {
  text-align: center;
  color: var(--grey-ccc);
}