Please leave feedback and let me know how it look on your screens.
Jimender
@JimenderAll comments
- @alexiscenriquezSubmitted over 3 years ago@JimenderPosted over 3 years ago
Hello @alexiscenriquez, Nice Attempt on this Challenge.
Tips on how you can improve it:
- Do not give your card a fixed height. you can envelop your main html inside a container and give it height of 100vh.
- Place your text content and buttons inside a wrapper or container and apply padding to it.
- Your card have too much border radius reduce it to match the header img. Instead of % use pixels for border-radius.
- For background svg try
background: top/100% no-repeat url(../images/pattern-background-mobile.svg); background-color: var(--paleBlue);
Marked as helpful1 - @TejasShekarSubmitted over 3 years ago
p.s. its been less than a month since I started my web dev journey and apologies if you feel that my questions are noob-ish.
- The box shadow is feather light and I just could not find out how to do it.
- Background wave svg did not render on github pages even though I dont have any issues when I previewed the site using live server.
- Any other suggestions for improvement are happily welcomed.
Thankyou.
@JimenderPosted over 3 years agoHi @TejasShekar, first of all Nice Work so far.
Tips on Improving:
- for box-shadow use
box-shadow: 0 1.5rem 2rem rgba(0,0,0,0.1);
and try to tweak it until you are satisfied with the result. - wrap your container in main tag and use flexbox on your container.
- you forgot to add hover & active effects on buttons.
- you can wrap text content inside a div element and add padding so that it looks same through out the project
Sorry couldn't provide solution regarding svg.
Happy Coding :)
Marked as helpful0 - @Gouse-saifSubmitted over 3 years ago@JimenderPosted over 3 years ago
- you should use appropriate colors.
body : Light-Gray: hsl(204, 43%, 93%); .priceList1: white;
- In your why us section use ul element.
Nice Work. Happy Coding :)
0 - @muhammadshajjarSubmitted over 3 years ago
Hello, everyone! 👋
Done with the challenge it was fun but could always try to make it better. With every project, there might be a number of possible solutions and I would love to have a look at your approach too. Feedback on how to make solutions simpler, best practices, or anything which would be helpful for me or anyone would be highly appreciated...
Thanks,
@JimenderPosted over 3 years agoNicely done but i think you forgot to add box-shadow on your profile card. Otherwise, looks perfect to me :) .
Marked as helpful0 - @ptai66Submitted over 3 years ago
How to lock buttons on the same height? Now it depends on size of description above.
@JimenderPosted over 3 years agoif you want to fix the position of buttons you can try absolute positioning.
0