
Design comparison
SolutionDesign
Community feedback
- @manuelstolzePosted about 2 months ago
Hi, i like your solution.
Here are some tips from my side:
-
You can import the font with the following in a css file instead via link in html.
@import url('https://fonts.googleapis.com/css2? family=Outfit:wght@100..900&display=swap');
-
You can define global values in CSS:
:root { --white: #FFFFFF; }
The global variables can then be used as
.white { background-color: var(--white); }
I hope this will help you for your next challanges! :)
Marked as helpful0 -
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord