File size: 1,263 Bytes
a417977
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
.pagination {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.chevronWrapper {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  background: var(--block-bg-color);
  text-align: center;
  vertical-align: top;
  color: var(--text-color);
  border-radius: 1.25rem;
  border: 0.0625rem solid var(--border-color);
  justify-content: center;
  align-items: center;

  &:not(.disabled) {
    cursor: pointer;

    &:hover {
      background: #0160ee;
      color: #fff;
      border-color: #0160ee;
    }
  }
}

.disabled {
  opacity: .3;
}

.numbers {
  overflow: hidden;
  font-size: .8125rem;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.number {
  display: inline-block;
  height: 1.875rem;
  min-width: 1.875rem;
  line-height: 1.875rem;
  padding: 0 0.3125rem;
  text-align: center;
  vertical-align: middle;
  color: var(--link-color);
  text-decoration: none;

  &:not(.active) {
    cursor: pointer;

    &:hover {
      color: var(--text-hover-secondary);
      text-decoration: none;
    }
  }
}

.active {
  background: var(--link-color);
  color: var(--text-light);
  border-radius: 50%;
}