-
-
Save jonescarvalho/8c2f9caff543c56c8c6c24f46910e03a to your computer and use it in GitHub Desktop.
Aula 01 - Códigos Extras
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
* { | |
box-sizing: border-box; | |
font-family: 'Roboto', sans-serif; | |
} | |
:root { | |
--primary: #2A7AE4; | |
--black: #000000; | |
--blackLighter: #9E9E9E; | |
--grayLight: #F5F5F5; | |
--grayMedium: #e5e5e5; | |
--white: #FFFFFF; | |
--frontEnd: #6BD1FF; | |
--backEnd: #00C86F; | |
} | |
html, | |
body { | |
margin: 0; | |
padding: 0; | |
} | |
a { | |
color: inherit; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment