Gaël Poupard

Results 196 comments of Gaël Poupard

@MartijnCuppens a few questions about this. **Specificity** Your pen will result in heavy specificity selectors (since `:not()` counts in specificity). Wouldn't something like [the lobotomized owl selector](https://alistapart.com/article/axiomatic-css-and-lobotomized-owls/) be better for...

@MartijnCuppens Back to business :tada: When using a typographic scale, every values are tight together depending on a single abitrary value: the ratio. For example, a base font size equivalent...

Seems reasonable, since those elements outside main content will likely to be in a custom layout (navbar, sidebar, footer…). So it makes sense, I guess.

It's been discussed already so I don't think it'll land. FWIW it's been implemented in [a branded fork called Boosted, through a Sass option](https://boosted.orange.com/docs/5.1/customize/options/). @mdo here's [the related PR in...

The PR you mention targets our docs, but with our default build one can be hitten by this behavior if they use `.fixed-top` or `.sticky-top` on their header or navbar....

Improved to take user preference into account: ```css @media screen and (prefers-reduced-motion: no-preference) { @view-transition { navigation: auto; } } ``` See [Ariel Salminen's View transitions for any website blog...