Design comparison
Community feedback
- @krushnasinnarkarPosted 4 months ago
Hi @matheusmirandaalmeida,
Your solution is great and well-structured! However, here is some suggestions:
Adding Color to Bullet Points and Ordered Lists To enhance the visual appeal of your lists, you can add color to bullet points and ordered list markers using the
::marker
pseudo-element. This will make your lists more engaging and easier to read.ul::marker { color: #007BFF; /* Example color for bullet points */ } ol::marker { color: #28A745; /* Example color for ordered list markers */ }
Adding
font-weight: lighter
to Headings To improve the readability and aesthetics of your headings, you can addfont-weight: lighter
toh3
,h4
, andh5
elements. This will make the headings look more elegant and less heavy.h3, h4, h5 { font-weight: lighter; /* Makes the headings lighter */ }
Summary: By adding color to bullet points and ordered list markers using the
::marker
pseudo-element, you can make your lists more visually appealing. Additionally, applyingfont-weight: lighter
toh3
,h4
, andh5
elements will improve the readability and elegance of your headings.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!
Marked as helpful1
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