What are you most proud of, and what would you do differently next time?
Considering it is my first time working on any front-end project the way I did with this one, I think following the design files (*.fig) guide lines when it comes to dimensions is going to have to be one of my religious methods. After being confused by the many, but informative read me files, I am proud of the way I managed to handle this in such less time than I had expected.
What challenges did you encounter, and how did you overcome them?
While working on the mobile display, I realized that the styles I had would not work for those same mobile devices in landscape orientation. finding a way to target the screen widths while not altering the original display on desktops and tablets proved to be troublesome.
Off to StackOverflow I went...
Their answer didn't exactly work for my situation but it got me close enough to figuring out what I had to do. There, initially, @media (max-device-width: 767px)
was explained but after modifying, I found that @media (max-device-height: 480px)
worked perfectly for my situation.
What specific areas of your project would you like help with?
Not, just with my project but with my knowledge entirely when it comes to working with responsivity. I struggle to understand what to use between max-width: ;
and width: ;
css rules. The same with the height. And then in addition, I have problems with @media
queries and then basic concepts of how @keyframes
work.