NEN
Guiding customers through the complexity of standards by understanding their needs
A copy (sort of) of the fresk.digital website with Utopia and the Cube CSS methodology. Inspired by this talk of Andy Bell.
All styles in the page below are first reset, then applied to ensure there are no project related styles.
At fresk.digital we empower organisations to help their professional users work smarter with intuitive digital solutions tailored to their operational challenges.
Guiding customers through the complexity of standards by understanding their needs
From business strategy to validated digital safety solutions
A human centred approach to a hands-free charging solution
Behind the scenes of a service: how Service Blueprinting connects the dots
From shadowing sessions to action points: Customer Journey Mapping at fresk.digital
How an Expert Review can identify pain points in your digital product; our work for NOC*NSF
Our clients are our partners, their goal is our goal. This helps us understand them well and at the same time bring them a fresh perspective on their challenges, so we can create the best solution.
We define the dot on the horizon and shape the Minimum Meaningful Product we need to create in order to deploy and learn as soon as possible. This is fueled by understanding user needs, desired business outcomes and the technical landscape.
Learn howWe build the Minimum Meaningful Product that we shaped in close collaboration between our client and our multidisciplinary team. While we are working towards the launch, we guard the boundaries of our partnership and the product agreements we have made.
Learn howWe measure the Minimal Meaningful Product we have launched and learn from the interaction with users. This leads to key insights that we translate into concrete product optimisations that make the digital product more meaningful and help grow our clients business.
Learn howI like it a lot. It kinda works the same as the CSS implementation at GRRR, but it prevents the duplication in your CSS. Resulting in a way smaller bundle.
The mental model is also a bit different. Therefore, you will need less code to achieve the same result. And you focus on re-use instead of re-apply.
There are more then enough options to tweak the things you need, without having to re-implement the total styling.
The thing I'm wondering about is how you adjust (for instance) the var(--region-space)
. If you have applied this class to an HTML element
<section class="region">...</section>
And you want to adjust the spacing, how do you do it?
<section class="region specific-name">...</section>
And update the var(--region-space)
there?
.specific-name { --region-space: 3rem;}
<section class="region specific-name" style="--region-space: var(--space-l);">...</section>
<section class="region region-l">...</section>
Not sure about this answer yet!