Last active
August 2, 2020 17:07
-
-
Save Hugoyhu/b61334866b5c2a5edaf6655f0545dd4d to your computer and use it in GitHub Desktop.
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
:root { | |
--colors-pink: #E5C1CD; | |
--colors-orange: #FFD5B8; | |
--colors-yellow: #fdfd96; | |
--colors-green: #ACECD5; | |
--colors-cyan: #B9D6F3; | |
--colors-blue: #ADDE6; | |
--colors-purple: #DEB3EB; | |
--colors-darker: #151613; | |
--colors-dark: #20201d; | |
--colors-darkless: #2b2b27; | |
--colors-black: #1d201d; | |
--colors-slate: #3b413a; | |
--colors-muted: #777f76; | |
--colors-smoke: #d5d8d5; | |
--colors-snow: #f5f5f4; | |
--colors-white: #ffffff; | |
--fonts-body: 'Baloo 2', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', | |
Roboto, sans-serif; | |
--fonts-display: 'Comfortaa', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', | |
Roboto, sans-serif; | |
--fonts-mono: 'SF Mono', 'Roboto Mono', Menlo, Consolas, monospace; | |
} | |
body { | |
background-color: --colors-cyan; | |
} | |
h1 { | |
text-shadow: 2px 2px --colors-orange; | |
} | |
#borderimg { | |
border: 10px solid transparent; | |
padding: 15px; | |
border-image: url(border.png) 30 round; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment