Im proud that I was able to complete this but also I need to work on keeping my project more organized and my naming conventions cleaner. Most of all i struggle on keeping my CSS clean.
Martin Malyska
@scaphyxxAll comments
- @HekimianzSubmitted 4 months agoWhat are you most proud of, and what would you do differently next time?@scaphyxxPosted 4 months ago
Great solution! Keep an eye for margin and paddings at desktop size
1 - @Mateogr03Submitted 4 months ago@scaphyxxPosted 4 months ago
great solution. add padding to the top or just center it in the body with flex or grid
0 - @sedaryildirimSubmitted 4 months agoWhat challenges did you encounter, and how did you overcome them?
creating a cross pattern grid was more challenging than i expected.
@scaphyxxPosted 4 months agonice solution. maybe use letter-spacing on your heading and the font-sizes in the cards dont look right to me :)
Marked as helpful1 - @sidr467Submitted 6 months agoWhat are you most proud of, and what would you do differently next time?
i used grid in tailwind css
What challenges did you encounter, and how did you overcome them?some things was overriding so figuring out was them challanging.
What specific areas of your project would you like help with?Responsive part because i still get lost in these things
@scaphyxxPosted 4 months agohi! great solution :) maybe giving the img in mobile a fixed hight can make a huge difference. and try giving the body some padding on x- and y-axis in mobile
0 - @CinquantesixSubmitted 4 months agoWhat are you most proud of, and what would you do differently next time?
I learn a lot about
What challenges did you encounter, and how did you overcome them?list
andtable
and I'm really happy to discover new way of thinking, thanks to csscounter
and pseudoclass::marker
.Table is not really easy to build and to style. I don't know but for me, I think it's a little bit old fashion… It take to much effort for a basic result.
What specific areas of your project would you like help with?Is there an ohter way to build the table with simplicity?
@scaphyxxPosted 4 months agooverall a good solution. but keep an eye on the headings font-weight. it looks like its just a regular or even less font-weight
0 - @Mudassir-CoderSubmitted 4 months ago@scaphyxxPosted 4 months ago
i did the same mistake :) links should be smaller width. in your solution maybe around 65%. but great solution overall. love it!
0 - @innitmanSubmitted 4 months agoWhat are you most proud of, and what would you do differently next time?
It was easier doing this the second time from Figma.
What challenges did you encounter, and how did you overcome them?I couldn't work out how to make the font size change without media queries. I also found centering the card tricky; for some reason, this time : display grid with place-content: center didn't work on the .card-container. I had to use place-self: center on the .card itself.
What specific areas of your project would you like help with?-
If .card-container is set to display: grid; and .card is a child of .card-container, place-content: center; did not work when width of .card was set to min(384px, 100%-48px). It seemed to calculate the larger width of the min options on desktop, use this to incorrectly center the content, and then shrink down to the smaller of the min options in terms of what it actually painted. Is this just an issue with using width: min(a,b) with grid children? I'm aware of minmax for the grid-columns, but am wondering if we can use plain old min for the grid children.
-
Any help on how to make the font smaller without media queries as the front end mentor challenge suggested would be appreciated :)
@scaphyxxPosted 4 months agohi!
its a really good solution!
place-content: center should be set on your card-container. And to get the font-size smaller wo/ media-queries we need to set a dynamic fontsize: i am using this formular:
font-size: clamp( minValue rem, calc(minValue rem + (maxValue - minValue) * (100vw - minVw px) / (maxVw - minVw )), maxValue rem );
Marked as helpful0 -
- @Ragnarok344Submitted 4 months agoWhat are you most proud of, and what would you do differently next time?
That i actually got it to line up useing CSS
What challenges did you encounter, and how did you overcome them?Figuring out which way to go and use flex and border box
What specific areas of your project would you like help with?Learning how to move all elements around the page. And what CSS elements do what.
@scaphyxxPosted 4 months agohi! you could do a min-width: 100svh on the body to stretch it out to the bottom and then place the content into the center with either flex or grid
Marked as helpful0