Created
March 10, 2019 10:18
-
-
Save levnhub/750243332c0475f5990c98cc4b6bff60 to your computer and use it in GitHub Desktop.
Wordpress Pagination CSS Style Template
This file contains hidden or 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
// WP Pagination Style | |
.pagination { | |
// block style | |
.screen-reader-text { | |
display: none; | |
} | |
.nav-links { | |
// list style | |
.page-numbers { | |
// item style | |
&.current { | |
// current item style | |
} | |
&.dots { pointer-events: none; } | |
} | |
a.page-numbers { | |
// link style | |
&:hover { | |
// link hover | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment