Created
September 27, 2016 18:21
-
-
Save dextermb/455429e02131ec67e7409039a18ba0be to your computer and use it in GitHub Desktop.
boilerplate
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
* { | |
position: relative; | |
box-sizing: border-box; | |
margin: 0; | |
padding: 0; | |
font-family: 'Roboto', sans-serif; | |
font-weight: 400; | |
font-size: 12px; | |
color: #777; | |
cursor: default; | |
outline: 0; | |
outline: none; | |
} | |
h1, | |
h2, | |
h3, | |
h4, | |
h5, | |
h6 { | |
font-family: 'Roboto', sans-serif; | |
color: #333; | |
} | |
h1 { | |
font-size: 40px; | |
} | |
h2 { | |
font-size: 30px; | |
} | |
h3 { | |
font-size: 20px; | |
} | |
h4 { | |
font-size: 15px; | |
color: #444; | |
} | |
p, | |
button { | |
line-height: 20px; | |
} | |
a:hover, | |
button:hover { | |
cursor: pointer; | |
} | |
a, | |
i { | |
font-family: inherit; | |
font-weight: inherit; | |
font-size: inherit; | |
text-decoration: inherit; | |
color: inherit; | |
cursor: inherit; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment