Last active
April 30, 2019 14:41
-
-
Save vedam/bf9d0d53e23fb51cd3b52692c0c5b4a6 to your computer and use it in GitHub Desktop.
default styles for codesandbox
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
@import url("https://fonts.googleapis.com/css?family=Muli:300"); | |
:root { | |
--back: #f5f5f5; | |
--prime: #06c59f; | |
--text: #606063; | |
} | |
* { | |
margin: 0; | |
padding: 0; | |
text-rendering: optimizeLegibility; | |
background-repeat: no-repeat; | |
border-collapse: inherit; | |
box-sizing: border-box; | |
} | |
body { | |
font: 18px/1.4 "Muli", sans-serif; | |
margin: 0; | |
padding: 60px 80px; | |
font-weight: 300; | |
color: var(--text); | |
background: var(--back); | |
} | |
h1 { | |
margin-bottom: 0.6rem; | |
font-weight: 300; | |
color: var(--prime); | |
} | |
p { max-width: 30em } | |
.white { color: white } | |
.prime { color: var(--prime) } | |
.bg-prime { background: var(--prime) } | |
a, a:link, a:visited { | |
color: #000; | |
text-decoration: none; | |
} | |
a:hover { color: var(--prime) } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment