@danielmrz-dev
Posted
Hello there!
Congrats on completing the challenge! ā
Your solution looks great!
The background pattern with the circles is a bit tricky, but you don't need separate containers to create it as it's possible to work with multiple background images at the same time. Here's how you can do it:
š Add this to the body:
background-color: var(--Dark-cyan);
background-image: url("./images/bg-pattern-top.svg"), url("./images/bg-pattern-bottom.svg");
background-repeat: no-repeat, no-repeat;
background-position: right 52vw bottom 35vh, left 48vw top 52vh;
I hope it helps!
Other than that, you did an excelent job!
Marked as helpful
@robcrock
Posted
@danielmrz-dev thank you so much for the comment. I'll be able to use this in future challenges for sure.
I ending up creating a single custom class in my global.css file and adjusted the positioning to make more sense to me.
.bg-custom {
background-color: hsl(185, 75%, 39%);
background-image: url("/images/bg-pattern-top.svg"),
url("/images/bg-pattern-bottom.svg");
background-repeat: no-repeat, no-repeat;
background-position:
left -28vw top -24vh,
right -28vw bottom -24vh;
}