I am working on a project for which i have to make responsive version of the website. The site is a one page website made with jquery,fixed height and width and absolute positioning. The contents of the site must fit in within the viewport of the browser, view it here,
Now the problem is, i have to take care of not only the width but also the height of the screen, and if i target both fixed device height and width, the code will be huge, any suggestions, what i have planned to use,
@media screen and (max-width:479px) {...}
@media screen and (min-width:480px) and (max-width:639px) {...}
@media screen and (min-width:640px) and (max-width:959px) {...}
@media screen and (min-width:960px) and (max-width:1279px) {...}
@media screen and (min-width:1280px) and (max-width:1599px) {..}
@media screen and (min-width:1600px) and (max-width:1919px){...}
@media screen and (min-width:1920px) {...}
but this does not give be desired results because fixed height percentage in the current design.
Please, any suggestions.