Created
July 17, 2018 00:24
-
-
Save jhurtadojerves/e0a4ccfdc505553a84a7ef498da60120 to your computer and use it in GitHub Desktop.
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
.Home { | |
background: #206e8d; | |
margin: auto auto; | |
width: 80%; | |
} | |
.Home h1 { | |
text-align: center; | |
padding-top: 5px; | |
} | |
.People-list { | |
display: grid; | |
grid-template-columns: repeat(2, 1fr); | |
grid-template-rows: auto; | |
justify-items: center; | |
align-items: center; | |
} | |
.People{ | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
background: #f2f2f2; | |
border: 1px solid black; | |
border-radius: 5px; | |
font-size: 1.5rem; | |
height: 50px; | |
text-align: center; | |
width: 50%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment