-
-
Save adermanjr/5e125c43367c9a3e42835fa733fcdfab 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