This is a solution to the Profile card component 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
- See hover states for interactive elements
- Semantic HTML5 markup
- CSS custom properties
- Flexbox
- Mobile-first workflow
This challenge was important to learn some different codes I can use in css-background. For example, i didn't know I can use 2 or more background images in the same component (body, in this case):
To see how you can add code snippets, see below:
background: url(images/bg-pattern-top.svg), url(images/bg-pattern-bottom.svg);
background-repeat: no-repeat, no-repeat;
background-position: right 50vw bottom 50vh, left 55vw top 50vh;
background-color: var(--pri-dark-cyan);
}
- B7 Web - B7Web is an online web developer course from Brazil. So i learned how to write HTML and CSS codes studying B7Web's classes.
- Website - André dos Reis
- Frontend Mentor - @andrebdosreis
- Twitter - @andrebdosreis
Thanks FrontEndMentor.io for challenge. I'm learning a lot with you.