-
-
Save felipealvessi/09305b62353208f37428ce73b0f6bb0b 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