Latest comments
- @JoelJohsSubmitted 9 months agoP@sergrosuPosted 9 months ago
Hey, Your images are not working. If hosting on github pages, make sure the link to image is relative, like so:
./assets/image.jpg
Marked as helpful0 - @KaEssamSubmitted 9 months agoP@sergrosuPosted 9 months ago
You're pretty close, I would suggest you fix the following:
- Your hero images do not match the design on the sides. The purpose is to make it look like there are more people on the sides, however your implementation cuts the images abruptly.
- Fix the font weight on headings.
Marked as helpful0 - @Mel-JaSubmitted 9 months agoP@sergrosuPosted 9 months ago
you should probably limit the height of the grid container
0 - @Mel-JaSubmitted 9 months agoP@sergrosuPosted 9 months ago
I would set a
max-width
to your content, so it doesn't grow infinitely. It looks too big on wide screen.0 - @erratic-enigmaSubmitted over 1 year agoP@sergrosuPosted 9 months ago
You're pretty close. One thing I would change, is the cart icon: it's a style element and it's probably not a good idea to have it in your html. You can implement it inside your button using the
::before
pseudo-element:.button-cart::before { content: ""; width: 15px; height: 16px; background-image: url(../images/icon-cart.svg); }
0 - P@tunaertenSubmitted 9 months agoWhat are you most proud of, and what would you do differently next time?
It took longer than I expected. I saw that the project had a lot of details. The Figma file was really helpful. At first, I didn't use flexbox or grid to build the project. After finishing the project and starting to set up media queries, I noticed that when the page began to shrink, it caused many small problems. Therefore, I went back to the beginning and redesigned the page with a grid. This time, I got the result I wanted. In my next project, I will definitely consider this from the start. For the first time in CSS, I used the (:not) operator. I had seen it a few times but had never used it before. Other than that, it was a very enjoyable project. I am eagerly looking forward to the next project.
What challenges did you encounter, and how did you overcome them?I used table for the first time. I frequently referred to MDN pages to recall what I had learned.
What specific areas of your project would you like help with?I definitely need help with landmarks. I read the article, but I keep making mistakes in every project when I try to implement them. I would be very grateful if someone could show me how to use landmarks in my project.
P@sergrosuPosted 9 months agoYou're very close. I would suggest adjusting the
min-height
property to 1vh, to get rid of the white space at the bottom of the page:body { min-height: 1vh; }
You can also decrease the list markers size with:
ul::marker { font-size: 0.75rem; }
Marked as helpful0