This is a solution to the Loopstudios 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 for the site depending on their device's screen size
- See hover states for all interactive elements on the page
- Semantic HTML5 markup
- CSS custom properties
- Flexbox
- CSS Grid
- Mobile-first workflow
- Google fonts
I learned that I could change the styles of the children when you hover on their parent container. For example,
<section>
<h2>Hello</h2>
<p>World</p>
</section>section:hover p{
color: blue;
}In the above code, when section is hovered, the color of the <p> tag changes to blue without directly being hovered on.
- Website - Mishael Enyi
- Twitter - @mishael_codes
- Instagram - @mishael_codes
- Frontend Mentor - @mishael-codes
I was tied down on how to make the creation-name change after hovering on the image itself but with a few digging here and there, I found Valeriia's code solution which gave me an idea of how to make that feature work.

