Design comparison
Solution retrospective
🚀 Challenge Results Summary Component: Completed!
- Passionate about web design and development, I'm excited to share my latest project: the "Results Summary Component"! 💻✨
🖥️ Solid Structure:
- I developed HTML and CSS code that is not only functional, but also follows best organizational and semantic practices.
🎨 Styling:
- Using CSS variables and maintaining a responsive design, I was able to harmonize colors, fonts and images, creating an aesthetically pleasing interface that adapts to different devices.
💡 Responsive Innovation:
- Demonstrated responsive design skills by incorporating media queries, ensuring the Equalizer Landing Page shines on any screen, from desktop to smartphone.
Feedbacks are always welcome. 🚀👩💻
Community feedback
- @irenanrodriguesPosted 12 months ago
Oi @v1fonseca911, tudo bem? Parabéns por completar o desafio. Tenho algumas sugestões que você pode estar usando.
Comece a desenvolver seus projetos usado HTML semântico. Assim você melhorar a acessibilidade e a organização da sua página, deixando ele um pouco mais limpo, sem o uso de muitas tags divs.
Para deixar seu projeto no centro, faça assim:
body { display: flex; align-items: center; justify-content: center; min-height: 100vh; }
Nas classes .container-left e .container-right, você pode deixar elas com
width: 100%;
, como você em .container, deixou a largura máxima, elas vão se ajustar por igual..container-right, você usou flexbox, use a propriedade
gap: 1rem;
, para adicionar o espaçamento entre os card e epadding: 2rem;
, para espaçamento no .container-right todoNos mini-card, você repediu muita propriedade. Você pode fazer da seguinte forma.
HTML
<div class="mini-card card-reaction"> restante do código..... </div>
CSS
.mini-card { display: flex; justify-content: space-between; width: 100%; padding: 0.75rem; border-radius: 0.75rem; } .card-reaction { background: var(--red-95-white); color: #F55;
Se ficou com alguma dúvida das sugestões, pode perguntar =)
Marked as helpful0@vitorianfonsecaPosted 12 months agoOlá @irenanrodrigues! Quero agradecer o feedback e o tempinho que tirou para me ajudar. Já modifiquei o código seguindo as suas dicas, obrigado :)
0
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