Skip to content

Instantly share code, notes, and snippets.

@mkusher
Created June 9, 2014 16:06
Show Gist options
  • Save mkusher/e6196efd4f129a5d21b4 to your computer and use it in GitHub Desktop.
Save mkusher/e6196efd4f129a5d21b4 to your computer and use it in GitHub Desktop.
@media only screen and (max-width:991px){
h1{
font-size:3em
}
p{
font-size:1.3em
}
.nav-pills>li,.navbar-nav{
font-size:1.5em
}
}
@media only screen and (max-width:767px) and (min-width:480px){
h1{
font-size:3em
}
p{
font-size:1.3em
}
.navbar-nav{
font-size:1.5em
}
#top-button {
display: none;
}
}
@media only screen and (max-width:479px){
h1{
font-size:3em;
line-height:1.3em
}
p{
font-size:1.3em
}
.btn-default,.btn-primary{
font-size:1.2em
}
#top-button {
display: none;
}
.navbar-nav{
font-size:1.3em
}
.nav-pills{
text-align:center
}
.nav-pills>li{
font-size:1.3em
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment