Created
November 27, 2019 16:52
-
-
Save dancameron/63eb9a0ed1291c5c94a5b057b2999301 to your computer and use it in GitHub Desktop.
Pagination CSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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