👋 Hello! I'm Ahmed, a dedicated software engineering student with a passion for technology and years of hands-on experience with computers. I'm on a journey to expand my skills and contribute to the ever-evolving world of software development. 💻🚀
I’m currently learning...C, Python, JavaScript, React, HTML/CSS
Latest solutions
Responsive product preview card component using HTML/CSS
Submitted 10 months agoI'm still fairly new to responsive designs so any feedback on my code would be greatly appreciated.
Recipe page using HTML/CSS
Submitted 10 months agoI would appreciate any feedback, especially on the mobile preview of the page.
Blog preview card using HTML/CSS
Submitted 10 months agoI think I did a very close job of replicating the page but I'm no expert, so any feedback is appreciated.
Latest comments
- @Tometoo0304Submitted 10 months ago
- @AaryanChySubmitted 10 months ago
- @drk-ArthurSubmitted 10 months agoWhat specific areas of your project would you like help with?
I have no idea how to make the mobile design.
@Ahmed-l2Posted 10 months agoFor the mobile design, you can use CSS Media Queries, it will only take you a few minutes to understand how it works. CSS Media Queries allow you to apply different styles for different screen sizes, making your web design responsive and adaptable to various devices.
Here's an example:
Desktop Styles
main { margin-top: 100px; margin-bottom: 50px; border-radius: 20px; padding: 40px; background-color: lightblue; }
Mobile Styles with Media Queries
To change the
main
element's style for screens that are 768px wide or less, use the following Media Query:@media (max-width: 768px) { main { margin-top: 20px; margin-bottom: 20px; border-radius: 0; padding: 10px; background-color: lightcoral; } }
This Media Query modifies the
main
element's styling specifically for smaller screens.I hope this was clear enough for you to understand :)
0 - @Control222Submitted 10 months agoWhat challenges did you encounter, and how did you overcome them?
Difficulty with list marker. First changed list-style-position inside, but then could not make any gap between the marker and the text, so needed to change and find another method. Thankfully with margin and padding on ul and li elements it was doable
- @echocode1Submitted 10 months agoWhat are you most proud of, and what would you do differently next time?
I am proud of designing it even when I know it lacks a lot
What challenges did you encounter, and how did you overcome them?the colors giving seems a bit different from the starter designs i saw .had to generate some random color which took a whole lot of time
What specific areas of your project would you like help with?how to blend the mobile view to the desktop view though they look same to me.
@Ahmed-l2Posted 10 months agoLooks pretty good, something things I could point out that you're missing is the color change to green when hovering over the buttons and all the colors you need are provided in the style-guide.md.
Marked as helpful0 - @WebDesign-MultiMediaSubmitted 10 months ago@Ahmed-l2Posted 10 months ago
Looks good, maybe just a few touchups can be done and it will match the original design, like the bottom spacing, and the size of the avatar, along with the use of the correct weights for the texts.
0