→ Faunder: faunder.fi
→ Cuukbuuk: cuukbuuk.com
→ Faunder UI: ui.faunder.fi
Finland · Europe · Internet
cuukbuuk.com
cuukbuuk.com
Congrats on Kasvun kaava! It’s on my reading list — waiting for my book order to arrive. Hopefully the formula works, as I’m just about to start my next company.
Congrats on Kasvun kaava! It’s on my reading list — waiting for my book order to arrive. Hopefully the formula works, as I’m just about to start my next company.
Just updated Faunder UI to use oklch(from...) syntax for opacity and other color transformations. Much cleaner approach!
ui.faunder.fi/colors
Just updated Faunder UI to use oklch(from...) syntax for opacity and other color transformations. Much cleaner approach!
ui.faunder.fi/colors
I first used this with web components, so might be related to that.
I first used this with web components, so might be related to that.
The clear advantage of percentages is that you don't need to define container-type: inline-size.
Maybe I'll try switching to % and see if there are any issues 🤔
The clear advantage of percentages is that you don't need to define container-type: inline-size.
Maybe I'll try switching to % and see if there are any issues 🤔
:root {
--container: max(calc(50cqw - 960px / 2), 24px);
}
.some-elements {
padding-inline: var(--container);
}
This way all styling logic stays in CSS! 🎯
:root {
--container: max(calc(50cqw - 960px / 2), 24px);
}
.some-elements {
padding-inline: var(--container);
}
This way all styling logic stays in CSS! 🎯
padding-inline: max(calc(50cqw - 960px / 2), 24px);
}
Centers content with 960px max-width using container queries. Background colors extend edge-to-edge (unlike margin), so you get full-width backgrounds while keeping content centered!
Used in Faunder UI: ui.faunder.fi 🎯
padding-inline: max(calc(50cqw - 960px / 2), 24px);
}
Centers content with 960px max-width using container queries. Background colors extend edge-to-edge (unlike margin), so you get full-width backgrounds while keeping content centered!
Used in Faunder UI: ui.faunder.fi 🎯