Design comparison
Solution retrospective
Estoy orgullosa de haber podido realizar el proyecto y del resultado creo que no haría algo diferente
What challenges did you encounter, and how did you overcome them?Lo más dificil fue darle color a la imagen pero lo solucione con la propiedad filter agregandole opacity, brigthness, hue rotate y drop shadow para darle el color deseado
What specific areas of your project would you like help with?Creo que en nada por ahora estoy conforme con mi proyecto
Community feedback
- @zhansayatazhibayevaPosted 5 months ago
good job, keep it up the only thing I want to mention is in mobile version 'vistas' should be flex-column
0 - @krushnasinnarkarPosted 5 months ago
Hi@Nahir13,
Your solution is great and demonstrates a solid understanding of responsive design principles! Here are a few suggestions to further enhance the responsiveness and user experience:
Remove
text-align: center
from.contenedor
for Large Screens:- On larger screens, it's better to have the text aligned naturally . Apply
text-align: center
only for smaller screens.
.contenedor { text-align: left; } @media (max-width: 830px) { .contenedor { text-align: center; } }
Wrap
.vistas
Inside a Section and Use Flex withjustify-content: space-between
:- This will distribute the
.vistas
elements evenly across the available space.
<section class="vistas-wrapper"> <div class="vistas"> <p class="number">10k+</p><br> <p class="sombra">COMPANIES</p> </div> <div class="vistas"> <p class="number">314</p><br> <p class="sombra">TEMPLATES</p> </div> <div class="vistas"> <p class="number">12m+<br> <p class="sombra">QUERIES</p> </div> </section>
.vistas-wrapper { display: flex; justify-content: space-between; margin: 20px 0; }
Feel free to reach out if you have more questions or need further assistance.
I hope you find my feedback valuable, and I would appreciate it greatly if you could mark my comment as helpful if it was!
0 - On larger screens, it's better to have the text aligned naturally . Apply
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord