Created
May 6, 2015 09:27
-
-
Save megane9988/43f4f7224953911fc48e to your computer and use it in GitHub Desktop.
ページ分割を良い感じに装飾する
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
| @charset "utf-8"; | |
| .pagesprit { | |
| color: #000000; | |
| background:white; | |
| margin: 1em auto; | |
| line-height:2em; | |
| text-align:center; | |
| } | |
| .page-numbers{ | |
| .numbers{ | |
| display: inline-block; | |
| padding: 5px 20px; | |
| font-size: rem-calc(12); | |
| border: 1px solid $iron; | |
| } | |
| a { | |
| .numbers{ | |
| background-color: $vapor; | |
| border: none; | |
| &:hover { | |
| background-color: #000; | |
| color: #fff; | |
| } | |
| } | |
| } | |
| } |
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
| <div class="pagesprit"><?php wp_link_pages('before=<div class="page-numbers">&after=</div>&next_or_number=number&pagelink=<span class="numbers">%</span>'); ?></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment