Created
May 16, 2019 06:56
-
-
Save web2ls/37373c07965692e48e115d7abf219607 to your computer and use it in GitHub Desktop.
simple started boilerplate CSS
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
| html, body { | |
| width: 100%; | |
| height: 100%; | |
| padding: 0; | |
| margin: 0; | |
| } | |
| *, *:after, *:before { | |
| box-sizing: border-box; | |
| } | |
| a { | |
| color: #fff; | |
| text-decoration: none; | |
| } | |
| ul { | |
| list-style-type: none; | |
| padding-left: 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment