No real difficulties when building this project and overall a fun challenge.
No specific questions but any feedback and suggestions on how I can improve are very welcome!
Thank you!
No real difficulties when building this project and overall a fun challenge.
No specific questions but any feedback and suggestions on how I can improve are very welcome!
Thank you!
Hello! This solution looks great.
I would just point out one small thing that I learned from Coder Coder on YouTube. On your section-body-text
class you are using both top an bottom margins. According to Coder Coder, it would be better if you get used to adding either margin-top
or margin-bottom
to your elements but not both. From my pov, it is better adding margin-bottom
to each element. i.e:
.section-icon {
margin-bottom: 2rem;
...
}
.section-heading {
margin-bottom: 2rem;
...
}
.section-body-text {
margin-bottom: 2rem;
...
}
Kindly review if the best practice of code was used.
Best Regards
Hello!
For the desktop version it seems like there's an issue with the input icons. You can avoid using position: absolute
as you can actually set a background image to the inputs:
background-image: url(/images/icon-dollar.svg);
background-repeat: no-repeat;
background-position-y: center;
background-position-x: 1rem;
Hope this helps. c:
Hello!
Try adding position: relative
to your advice-card div. Then, you could adjust your refresh-btn with the bottom:
property but most important (I think), try this with your right:
or left:
property: right: 50%; transform: translateX(50%);
.
This should center your button horizontally relative to your card.
First time attempting a mobile-first workflow. Any feedback is appreciated, especially regarding the responsiveness of the page! Thanks.
P.S. I know the design looks a bit off from the original, and I was wondering if that's only because of me not having access to the exact measurements and sizes, or am I actually doing something wrong?
Hello!
Actually I think it looks pretty good. Congrats.
On your .image-container
media query you can reduce border-top-left-radius: 0; border-top-right-radius: 1rem; border-bottom-right-radius: 1rem;
to border-radius: 0 1rem 1rem 0;
I found it quite challenging to position the profile picture in the middle, at the end I have decided to position it absolutely. I am very interested if there are any more dynamic ways to position it.
I could not figure out how to set the background of the body so I just used a gradient, although aI would really like to know the solution for that.
Hello!
I faced the same challenge with the background images. After researching a little bit in google I found out that you can use more than one image as a background image. Something like this: background-image: url(/yourImage), url(/anotherImage);
and then add properties to position correctly both images. I am not an expert but I hope it gives you just enough to find out the solution.
Is there anything I can do better?
Congrats! I like your solution.
I would add just one more thing: box-shadow
to the card.
Nothing important.
c: