Open sssoz opened 7 months ago
Hi @sssoz, thanks for suggesting this. Let's break this up into three separate issues :)
Hi @sssoz, fyi the typography size variables have been added to the custom/_variables.scss file. So if you were planning on working on these styling improvements, feel free to do so. :)
Is your feature request related to a problem? Please describe.
Transitions between pages or parts of the pages, and interactions with certain UI elements can be slightly jarring. The typeface, which looks quite harsh in its contrast, can be made to look nicer and smoother as well. An example of a nice-looking animation/transition is the hover effect in the top navigation menu.
These are nice-to-haves but easy cosmetic changes.
Describe the solution you'd like
We could make use of CSS animations and transitions to create smoother, more inviting interactions with the page. There are plenty of 'easy wins' here:
scroll-behavior: smooth;
).btn
, for example (property could be:transition: all 200ms ease;
) — anywhere between 150 to 300ms tends to look better for small page elements-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
— it’s an extremely subtle change but adds a nice visual nuance to long text, creating a more pleasant reading experienceDescribe alternatives you've considered
--
Additional context
--