Created
August 7, 2017 20:40
-
-
Save prof3ssorSt3v3/ab3194e360205766e48c61aad3854173 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
*{ | |
padding: 0; | |
margin: 0; | |
box-sizing: border-box; | |
} | |
html{ | |
font-size: 16px; | |
line-height: 1.5; | |
font-family: sans-serif; | |
} | |
#users{ | |
max-width: 40rem; | |
} | |
#users li{ | |
background: #FFF; | |
border: 1px solid #bbb; | |
list-style: none; | |
margin: 1rem; | |
border-top-right-radius: 20px; | |
} | |
#users p{ | |
padding: 0.5rem 2rem; | |
} | |
#users .name{ | |
color: #000; | |
font-size: 2.0rem; | |
} | |
#users .info{ | |
background: #DDD; | |
color: #666; | |
font-size: 1.4rem; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment