Scott Kellum

Results 37 comments of Scott Kellum

Because I was not aware of this thread. Thank you!

On your rendered web page do you see Typetura loaded in the head? It still sounds like it's not being rendered there. It needs to be there so it can...

I wish there was a way to query font feature and [variation settings](https://github.com/w3c/csswg-drafts/issues/520) because not all fonts support subscript and superscript. It would be cool if you could do something...

I would imagine it would work similar to Adobe’s [Web Font Loader](https://github.com/typekit/webfontloader) but query features instead of specific fonts.

What I’m using in projects these days: ```css sup, sub { vertical-align: baseline; font-size: 1em; font-variant-position: super; } sub { font-variant-position: sub; } ``` Edit: Firefox is the only browser...

@mirisuzanne My view is that you shouldn’t be chaining the font size at all with `sub` and `sup` if your font supports it. Subscript and superscript is already baked into...

For animation, what if the duration was set to a really large value instead of a really small value to effectively pause it? On that note, `animation-play-state: paused` will do...

Thoughts on this? I’m liking @valhead’s direction but modified with a delay to fast forward the animation. ```css @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-delay: -1s !important; animation-duration:...

My take is a designer should be opinionated about this value and almost always change it themselves. I would kinda like default behavior to inherit everywhere just to keep things...

``` * { line-height: inherit; } :root { line-height: 1.4; } ``` Something like this would be where I might start. But I’m also curious as to how far you...