Help scaling down the site #95
-
I like the way my Basically Basic site looks when I scale it to 90% in Chrome, although I don't need to change the image sizes. So I thought I might be able to achieve something similar by changing some values in _variables.scss. I changed $base-font-size and $max-font-size, and at first glance that was pretty close. But some things didn't change. You'd probably know better than me, but here's what I noticed:
There's probably other things, but that's what I noticed. Can you tell me other settings I should change, or am I starting down a path that I should just avoid altogether? Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Most of the base typography is set on the I'm using a fluid type mixin to do some "magic" here but you could just replace this line with a non-mixin version if you want to shrink all of the type down:
To reduce the widths of everything else.... well you're starting down the path of "just learn CSS" 😛 |
Beta Was this translation helpful? Give feedback.
-
Thanks, and that's a perfect response. 😄I totally get it. I actually do know some CSS, but that's like saying I know Spanish because I can say "quesadilla". Thanks again. |
Beta Was this translation helpful? Give feedback.
Most of the base typography is set on the
html
element and bumps thefont-size
up or down depending on the screen width. Smaller point sizes for mobile, large for tablet, and even larger for desktop screens.I'm using a fluid type mixin to do some "magic" here but you could just replace this line with a non-mixin version if you want to shrink all of the type down:
To reduce the widths of everything else.... well you're starting down the path of "just learn CSS" 😛