Created
January 30, 2019 02:11
-
-
Save lee2sman/92eae92488336950433962115a7db63f to your computer and use it in GitHub Desktop.
ultra-minimalist mobile-responsive starter css code
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
/* created for students of Purchase College-Math/Comp Sci Scripting For The Web course */ | |
body { | |
font-family: sans-serif; | |
font-size: 1.2rem; | |
line-height: 1.65em; | |
max-width: 38em; | |
margin: auto; | |
color: #4a4a4a; | |
padding: 13px; | |
} | |
@media (max-width: 684px) { | |
body { | |
font-size: 1.5rem; | |
} | |
} | |
@media (max-width: 382px) { | |
body { | |
font-size: 1.3rem; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment