/* Large desktop */
@media (min-width: 1200px) {
/* Estilos para un tamaño superior de 1200px */
}
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) {
/* Estilos para un tamaño superior de 768px y menor 979px */
}
/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
/* Estilos para un tamaño menores de 767px */
}
/* Landscape phones and down */
@media (max-width: 480px) {
/* Estilos para un tamaño menores de 480px */
}
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
/* Estilos para un tamaño superior de 320px y menor 480px */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width : 321px) {
/* Estilos para un tamaño superior de 321px */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width : 320px) {
/* Estilos para un tamaño menores de 320px */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
/* Estilos para un tamaño superior de 768px y menor 1024px */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
/* Estilos para un tamaño superior de 768px y menor 1024px horizontal */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
/* Estilos para un tamaño superior de 768px y menor 979px vertical*/
}
/* Desktops and laptops ----------- */
@media only screen and (min-width : 1224px) {
/* Estilos para un tamaño superior de 1224px */
}
/* Large screens ----------- */
@media only screen and (min-width : 1824px) {
/* Estilos para un tamaño superior de 1824px */
}
/* iPhone 4 and high pixel ratio devices ----------- */
@media
only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) { }