Commit 8349236f authored by Mark Otto's avatar Mark Otto

Twerk lead font-size for mobile devices

parent ad235f5f
...@@ -362,11 +362,17 @@ p { ...@@ -362,11 +362,17 @@ p {
.lead { .lead {
margin-bottom: 20px; margin-bottom: 20px;
font-size: 21px; font-size: 16.099999999999998px;
font-weight: 200; font-weight: 200;
line-height: 1.4; line-height: 1.4;
} }
@media (min-width: 768px) {
.lead {
font-size: 21px;
}
}
small { small {
font-size: 85%; font-size: 85%;
} }
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -11,9 +11,13 @@ p { ...@@ -11,9 +11,13 @@ p {
} }
.lead { .lead {
margin-bottom: @line-height-computed; margin-bottom: @line-height-computed;
font-size: (@font-size-base * 1.5); font-size: (@font-size-base * 1.15);
font-weight: 200; font-weight: 200;
line-height: 1.4; line-height: 1.4;
@media (min-width: 768px) {
font-size: (@font-size-base * 1.5);
}
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment