Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

Página de tarjeta de estadísticas usando html y css

Nahir 70

@Nahir13

Desktop design screenshot for the Stats preview card component coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


What are you most proud of, and what would you do differently next time?

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

@zhansayatazhibayeva

Posted

good job, keep it up the only thing I want to mention is in mobile version 'vistas' should be flex-column

0

@krushnasinnarkar

Posted

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 with justify-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

Please log in to post a comment

Log in with GitHub
Discord logo

Join 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