Timelessgreed
@TimelessgreedAll comments
- @AdalOnShowSubmitted 7 months ago@TimelessgreedPosted 7 months ago
The accuracy is amazing, keep it up
Marked as helpful0 - @TimelessgreedSubmitted 7 months agoWhat are you most proud of, and what would you do differently next time?
It's a great project
What challenges did you encounter, and how did you overcome them?The margins and paddings
What specific areas of your project would you like help with?the margins and paddings
- @lij110397Submitted 7 months agoWhat are you most proud of, and what would you do differently next time?
1.How to import google fonts from the link and use variable weight to reduce code
:root { --font-young-serif: "Young Serif", serif; --font-outfit: "Outfit", sans-serif; }
And apply font-weight to specific class.
html { font-family: var(--font-outfit); font-weight: 400; }
2.How to change the markers' color of list items
ol::marker { color:red; }
3.How to set a divider
using "border" to set its styles:
hr { border: none; border-bottom: 0.0625rem solid var(--color-light-grey); /* 1px converted to rem */ }
4.Mobile-first design : try to start from min-width
To make it responsive to all screen sizes, the better way is to design the styles starting from the min-width. Adjust to the screen as it scales up.
What challenges did you encounter, and how did you overcome them?1.Mobile-first design : try to start from min-width
To make it responsive to all screen sizes, the better way is to design the styles starting from the min-width. Adjust to the screen as it scales up.
What specific areas of your project would you like help with?How to adjust the padding between main and body when it is in mobile size?
- @Venkatesh-git-devSubmitted 8 months agoWhat are you most proud of, and what would you do differently next time?
I am learning more about tailwind which make me 😊
- @lkosterSubmitted 8 months ago
- @saurabhpatil1307Submitted 8 months agoWhat are you most proud of, and what would you do differently next time?
NA
What challenges did you encounter, and how did you overcome them?NA
What specific areas of your project would you like help with?NA
- @FasilBhatSubmitted 9 months ago
There were many difficulties that I faced during the challenge but the hardest of them was about the height of the container, elements, divs, and other fractions of the website.
The only thing I am unsure of is the height and alignment of the elements.
The question is that if you provide the screen width, cant you write the height as well? That would make the challenge easy to solve.
@TimelessgreedPosted 9 months agoHi I'm also new to frontend development and doing this project, I was stack for a moment but thanks to your code I can now move forward. Goodluck in your frontend journey.
0