This is a solution to the Blogr landing page challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.
Users should be able to:
- View the optimal layout depending on their device's screen size
- Solution URL: https://github.com/avatarfreak/frontmentor-blogr-landing-page
- Live Site URL: https://avatarfreak.github.io/frontmentor-blogr-landing-page/
- Semantic HTML5 markup
- sass
- Flex-box
- CSS Grid
- Mobile-first workflow
- custom properties
Look below the things I was able to implemented:
- For Responsive fluid Font
calc(min-font-size + (max-font-size - min-font-size) * ((100vw - min-view-port) / (max-view-port - min-view-port)));
font-size: calc(15px + (20 - 15) * ((100vw - 375px) / (1440 - 375)));
- CSS Grid Layout - This article helped me to reinforce ideas about css grid layout.
- Website - pigoat
- Frontend Mentor - @avatarfreak
- github - avatarfreak