Skip to content

Instantly share code, notes, and snippets.

@michal-lipski
Created February 25, 2015 20:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michal-lipski/c02f59bdc48c525daa76 to your computer and use it in GitHub Desktop.
Save michal-lipski/c02f59bdc48c525daa76 to your computer and use it in GitHub Desktop.
/* Extra Small Devices, .visible-xs-* */
@media (max-width: 767px) {
h1 {
font-size: 26px;
}
}
/* Small Devices, .visible-sm-* */
@media (min-width: 768px) and (max-width: 991px) {
h1 {
font-size: 28px;color:red;
}
}
/* Medium Devices, .visible-md-* */
@media (min-width: 992px) and (max-width: 1199px) {
h1 {
font-size: 30px;color:green;
}
}
/* Large Devices, .visible-lg-* */
@media (min-width: 1200px) {
h1 {
font-size: 32px;color:blue;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment