Nothing's impossible. part is so hard it pull file up github T_T
Edson Ruiz
@xedsonruizxAll comments
- @namnueng32371Submitted over 1 year ago@xedsonruizxPosted over 1 year ago
Hi. Have do you try Git-Fork before as a tool to manage your proyect? It is easy to use.
Marked as helpful1 - @GabrielCarrillo93Submitted over 1 year ago
I new frontendmentor challenge I made, this time with responsive features
@xedsonruizxPosted over 1 year agoHi
you could change the 100% width of the "col-" with an especific width that does not change with the size of the page.
also for a better responsive way the grid class replace the 30% with a 50%
send the "eth" text to the left
and send the "clock" text to the right
.grid { display: grid; grid-template-columns: 50% 50%; justify-content: space-between; } .eth { text-align: start; } .clock{ text-align: end; } I hope it helps you
Marked as helpful0 - @GiwaHalimSubmitted over 1 year ago
stats preview card, i.m having a hard time figuring out the proper image filter
@xedsonruizxPosted over 1 year agoHi, actually you have to use, someone told before.
- mix-blend-mode: multiply It is to combine the background 'purple' with the image above it.
0 - @nattyriceSubmitted over 1 year ago
Updated:
I sorted out the vertical centering using just flex. I'll probably switch to @0xAbdulKhalid's grid solution though.
I also got rid of my media queries by just using min() in my max-width.
I was in the middle of trying to dial in the exact card dimensions when I discovered there was a screenshot/month limit.
Orignal:
I had trouble automatically centering the card vertically using grid. In the end I just settled for getting the top margin to 8vh.
I am unsure of if I handled the media queries and responsiveness in an optimal fashion. I suspect I could have used clamp to simplify some things. Perhaps min or max as well.
I wasn't sure what to do for the slight drop shadow on the card. I did my best to eyeball it.
@xedsonruizxPosted over 1 year agoHi i have some corrections for you, I am not an English speaker so If you dont understand something send me an email to [email protected], I will try to help you.
- body size 100 just add to your css code
body { height: 100%; }
How to make body and html 100 heght
- Center vertical card
there is some ways to center a card in the middle of the page this is what I used code example and playground
with this you can delete the top margin top from media query. I hope this will help you.
Marked as helpful1 - @destanyrSubmitted over 1 year ago
I would love some feedback on what I could add or remove for better functionality. I know it's not spot on but I got pretty close.
Unfortunately, I'm not understanding why the images won't load up. Insight on this would be wonderful. This was my first project and repository in GitHub and I could use all the help I can get.
@xedsonruizxPosted over 1 year agoHi i have some corrections for you, I am not an English speaker so If you dont understand something send me an email to [email protected], I will try to help you.
- body size 100 just add to your css code
body { height: 100%; }
How to make body and html 100 heght
- Center vertical card
there is some ways to center a card in the middle of the page this is what I used code example and playground
- Add Img from your folders
when you call an image from your folder, you dont have to write all your pc path in this case you have to write src="./images/image-qr-code.png" to get you image.
I hope this will help you.
0