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

_pagination.scss « components « css « assets - github.com/vaga/hugo-theme-m10c.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cc0d8a1e0a04ea140062e8e63e497986592eac57 (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
.pagination {
  display: block;
  list-style: none;
  padding: 0;
  font-size: 0.8em;
  text-align: center;
  margin: 3em 0;
}

.page-item {
  display: inline-block;
  .page-link {
    display: block;
    padding: 0.285em 0.8em;
  }

  &.active {
    .page-link {
      color: $lightest-color;
      border-radius: 2em;
      background: $primary-color;
    }
  }
}