Created
May 11, 2021 16:59
-
-
Save Zyst/7783e2a0f34f5fad18a9abc7608f3c9a to your computer and use it in GitHub Desktop.
My custom Google Play Theme
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
@-moz-document url-prefix("https://play.google.com/books/reader"), url-prefix("https://books.googleusercontent.com/") { | |
body, | |
.gb-page-root, | |
.gb-reader-container { | |
font-family: 'SF Pro Display', 'Roboto', BlinkMacSystemFont, 'Merriweather', serif; | |
line-height: 1.75em; | |
color: #D1D1D1; | |
background-color: #222233; | |
} | |
.gb-segment > p { | |
margin-top: 18px; | |
margin-bottom: 18px; | |
} | |
.gb-page-wrapper-body { | |
padding-left: 15px !important; | |
padding-right: 15px !important; | |
} | |
.gb-statusbar { | |
opacity: 0; | |
transition: opacity 0.3s ease 0s; | |
} | |
.gb-statusbar:hover { | |
opacity: 1; | |
} | |
.gb-topbar { | |
opacity: 0; | |
transition: opacity 0.3s ease 0s; | |
} | |
.gb-topbar:hover { | |
opacity: 1; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment