Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pagination.css « css « static - github.com/urjaacharya/redgood.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 85311bbcb5f1927c065ea85a8a34be33d174ab11 (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
ul.pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  list-style-type: none;
}
li.page-item {
  padding: 10px;
}
li.page-item {
  border-top: 1px solid var(--primary);
  border-bottom: 1px solid var(--primary);
  border-left: 1px solid var(--primary);
  background-color: var(--bg);
}
li.page-item.disabled a {
  color: var(--inactiveColor);
}
li.page-item.active {
  background-color: var(--primary);
}
li.page-item.active a {
  color: var(--bg);
  font-weight: 600;
}
li.page-item:first-child {
  border-radius: 10px 0 0 10px;
}
li.page-item:last-child {
  border-radius: 0 10px 10px 0;
  border-right: 1px solid var(--primary);
}