Last active
December 26, 2015 15:09
-
-
Save yuuan/7170941 to your computer and use it in GitHub Desktop.
Stylishを使ってAutoPagerizeのページ番号を見やすくする。
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
@namespace url(http://www.w3.org/1999/xhtml); | |
.autopagerize_page_info { | |
line-height: 150%; | |
font-size: 13px !important; | |
font-weight: normal; | |
font-family: "Eras Medium ITC" !important; | |
} | |
.autopagerize_page_info a { | |
display: inline-block; | |
font-size: 16px !important; | |
font-weight: normal; | |
padding: 0.3ex 1.0ex !important; | |
border: 2px solid lightsteelblue; | |
text-decoration: none !important; | |
} | |
.autopagerize_page_info a:link { | |
color: #398eae !important; | |
border-color: #49a1c4 !important; | |
background: white !important; | |
} | |
.autopagerize_page_info a:visited { | |
color: slateblue !important; | |
border-color: slateblue !important; | |
background: white !important; | |
} | |
.autopagerize_page_info a:hover { | |
color: white !important; | |
border-color: #49a1c4 !important; | |
background: #49a1c4 !important; | |
} | |
.autopagerize_page_info a:visited:hover { | |
color: white !important; | |
border-color: slateblue !important; | |
background: slateblue !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment