Skip to content

Instantly share code, notes, and snippets.

@bluedognz
Created December 20, 2017 02:11
Show Gist options
  • Save bluedognz/d8b6eeea7ac111c210536c3df71b85a1 to your computer and use it in GitHub Desktop.
Save bluedognz/d8b6eeea7ac111c210536c3df71b85a1 to your computer and use it in GitHub Desktop.
H1,2,3 responsive CSS snippet
/** GLOBAL SMALL DEVICE H1,2,3 FONT SIZES **/
@media (max-width: 768px) {
h1 {
font-size: 32px;
}}
@media (max-width: 768px) {
h2 {
font-size: 28px;
}}
@media (max-width: 768px) {
h3 {
font-size: 24px;
}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment