-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Best way to adjust font sizes? #95
Comments
Depends on if you want to change all font sizes globally or not. If you just want to make them all larger or smaller then you can try declaring a font-size on the body element in percentages. For example to make all type 5% larger you'd do something like If you want to change specific elements then you'll need to change the size on them each. The |
I tried using |
I'd suggest changing each element individually then. The font-size mixin On Monday, September 29, 2014, Mike Chelen [email protected] wrote:
|
Ok thanks, I might try making some variables like |
Personally that's a bit oversimplified for my taste. I don't think I've ever seen typography handled like that. We're really only talking about a handful of elements that have their sizes defined as part of a typographic scale. Replacing them with a few variables really doesn't gain much I don't think. |
Ok, that makes sense. If I think of any better way to handle it, I'll submit a PR. |
Fixed width fa icons for cleaner stacking, plus youtube and soundcloud
Fixed absence of checked boolean in sidebar attribute
Fix: Change pagination text mmistakes#94
Hi, I'd like to increase the font sizes for most of the content. I tried increasing the
font-size
in thebody
element, but it seems like many child elements such as<p>
,li
,<blockquote>
and others have theirfont-size
set explicitly in_site.scss
.What would be the recommended way to increase these font sizes? Do I need to adjust each one in
_site.scss
?I tried editing
$doc-font-size
in_variables.scss
but the results were not what I expected.Any tips would be appreciated, thank you.
The text was updated successfully, but these errors were encountered: