Below provided CSS responsive media queries for mobile, tabs, desktops
/*Mobile view*/
@media (min-width : 320px) and (max-width : 480px) {
// related CSS
}
/*Tab view*/
@media (min-width : 480px) and (max-width : 760px) {
// related CSS
}
/*Tab view*/
@media (min-width : 760px) and (max-width : 980px) {
// related CSS
}
/*Desktop view*/
@media (min-width : 980px) and (max-width : 1024px) {
// related CSS
}