I'm started project without any frameworks to RWD. So I'm wonder about how to do that. I'm starting with this:
Make layout for desktop without @media
Think what is different on mobile devices etc.
Make media queries for mobile devices and change only elements that are not fit to layout.
But I see that is not good way. My media query not overwrite normal css. Here's an example.
#navbar{
position: absolute;
top: 80px;
}
@media (max-width: 544px){
#navbar{
top:0px; // Not working of course
}
}
So how do you making responsive layout, can give me a path? Making all styles for each other breakpoints or what?