Skip to content

Instantly share code, notes, and snippets.

@dancameron
Created November 27, 2019 16:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dancameron/63eb9a0ed1291c5c94a5b057b2999301 to your computer and use it in GitHub Desktop.
Save dancameron/63eb9a0ed1291c5c94a5b057b2999301 to your computer and use it in GitHub Desktop.
Pagination CSS
.pages .pagination {
display: block;
clear: both;
}
.pages .pagination a {
color: #60A7FC;
background-color: #F9FCFF;
border-color: transparent;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
background-color: #60A7FC;
border-color: #F9FCFF;
}
.pagination > li > a,
.pagination > li > span {
-webkit-transition: all 0.25s linear;
-moz-transition: all 0.25s linear;
-ms-transition: all 0.25s linear;
-o-transition: all 0.25s linear;
transition: all 0.25s linear;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment