Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

Profile Card Component

gmqrk247โ€ข 90

@gmqrk247

Desktop design screenshot for the Profile card component coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Community feedback

Lucas ๐Ÿ‘พโ€ข 104,420

@correlucas

Posted

๐Ÿ‘พHi @gmqrk247, congrats on completing this challenge!

I saw your solution preview site and I think it's already really good. Hereโ€™s some tips for you to improve it:

To add the circles (bottom/top) in the background, the best way is by using background-image to manage it since adding them to the body you make sure it will be under everything, see the properties below and see that the comma inside each properties declare the single modification for each circle separated.

body {
    background-color: hsl(185deg, 75%, 39%);
    background-image: url(./images/bg-pattern-top.svg), url(./images/bg-pattern-bottom.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: top -500px left -400px, bottom -700px right -250px;
    display: grid;
    place-content: center;
    /* background: var(--dark-cyan); */
    min-height: 100vh;
    font-size: var(--fs-body);
}

โœŒ๏ธ I hope this helps you and happy coding!

Marked as helpful

0

gmqrk247โ€ข 90

@gmqrk247

Posted

@correlucas Thanks! This is helpful! I am so not good with these bg images and patterns here and there on the page, I always struggle adding them.

1
Lucas ๐Ÿ‘พโ€ข 104,420

@correlucas

Posted

@gmqrk247 Since you do the first time will be a lot easier bro. Keep it up =)

0

Please log in to post a comment

Log in with GitHub
Discord logo

Join 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