I plan to create a web application using Phonegap. Since I need to deal with different screen sizes, I will have to work with responsive design and CSS3 multimedia queries.
I have a mobile phone with a resolution of 1080x720, and I want to start with this (large) resolution and say that css is base.css. And for small screens, I'll add something like small.css to overwrite base.css (places where necessary).
Suppose css is complex, won't it entail more workload for small screen phones (whose ability is usually weaker than large ones)? Is it better to start with small.css as base.css and overwrite it big.css on large phones? Or does it not matter in a web application script (since the css file size is not a big problem)?
Any design considerations and tips?
source share