Created
September 12, 2020 14:09
-
-
Save JuanM04/2fdcdc33026a68e213183faf7ffd4d4a to your computer and use it in GitHub Desktop.
CSS uploaded by scrapbook.hackclub.com/customizer
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
@font-face { | |
font-family: "Phantom Sans"; | |
src: url(https://assets.hackclub.com/fonts/Phantom_Sans_0.7/Bold.woff); | |
font-weight: bold; | |
} | |
@font-face { | |
font-family: "Phantom Sans"; | |
src: url(https://assets.hackclub.com/fonts/Phantom_Sans_0.7/Regular.woff); | |
} | |
:root { | |
--colors-text: white; | |
--colors-muted: white; | |
--colors-elevated: rgba(100,100,100,1); | |
--fonts-body: "Phantom Sans", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI'; | |
} | |
body { | |
animation: 20s bg infinite; | |
background: linear-gradient(-30deg, rgba(33,33,33,1) 0%, rgba(80,80,80,1) 100%); | |
} | |
.header-link { | |
color: white; | |
} | |
.post { | |
transition: all .2s ease-in-out; | |
} | |
.post:hover { | |
background-color: rgba(120,120,120,1); | |
} | |
.post a { | |
color: white; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment