Design comparison
SolutionDesign
Solution retrospective
When I was building this project, I am not in the mood and it took me almost 2 hours. I have no idea how to change the color of SVG. And the sharing section is not the best. I can't figure out how to add the triangle under the sharing section. Feedbacks are warmly welcome.
Happy coding!
Community feedback
- @Akhlak-Hossain-JimPosted over 2 years ago
Great work so far.
The things you asked, these might help,
- remove
fill
attribute from HTML<path ... >
then targetsvg
from CSS and addfill: red;
rule. - add an
::after
pseudo-class and style
.social-section::after { content: ""; border-top: 10px solid var(--very-dark-grayish-blue); border-left: 10px solid transparent; border-right: 10px solid transparent; position: absolute; bottom: -7px; left: 48%; z-index: 10; }
Note: this is a way but not the only way.
So, Happy coding :)
Marked as helpful1@hteinLinn210Posted over 2 years ago@Akhlak-Hossain-Jim Thank you so much for your advice. It really helps me.
0 - remove
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