Skip to content

Instantly share code, notes, and snippets.

@lee2sman
Created January 30, 2019 02:11
Show Gist options
  • Save lee2sman/92eae92488336950433962115a7db63f to your computer and use it in GitHub Desktop.
Save lee2sman/92eae92488336950433962115a7db63f to your computer and use it in GitHub Desktop.
ultra-minimalist mobile-responsive starter css code
/* 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