Twerk lead font-size for mobile devices

This commit is contained in:
Mark Otto 2013-07-26 21:12:48 -07:00
parent ad235f5f51
commit 8349236f8c
3 changed files with 13 additions and 3 deletions

View File

@ -362,11 +362,17 @@ p {
.lead {
margin-bottom: 20px;
font-size: 21px;
font-size: 16.099999999999998px;
font-weight: 200;
line-height: 1.4;
}
@media (min-width: 768px) {
.lead {
font-size: 21px;
}
}
small {
font-size: 85%;
}

File diff suppressed because one or more lines are too long

View File

@ -11,9 +11,13 @@ p {
}
.lead {
margin-bottom: @line-height-computed;
font-size: (@font-size-base * 1.5);
font-size: (@font-size-base * 1.15);
font-weight: 200;
line-height: 1.4;
@media (min-width: 768px) {
font-size: (@font-size-base * 1.5);
}
}