Created
December 29, 2020 12:35
-
-
Save shahab570/81b3b67db28bdd7e5aef2cf036d5a34e to your computer and use it in GitHub Desktop.
This file contains 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
//style.css | |
* { | |
margin: 0; | |
padding: 0; | |
box-sizing: border-box; } | |
body { | |
width: 100%; | |
height: 100vh; | |
background-color: #0f3057; | |
display: flex; | |
flex-direction: column; | |
justify-content: center; | |
align-items: center; } | |
h1 { | |
color: #e7e7de; | |
border-bottom: 2px solid #008891; | |
line-height: 1.8; } | |
p { | |
color: #e7e7de; | |
font-size: 25px; } | |
/*# sourceMappingURL=style.css.map */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment