Created
October 2, 2017 18:47
-
-
Save caioregatieri/94639b30f9fd7419d35d7b3f0ddfd5a8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Estilo que será visualizado por smartfones tanto em retrato como em paisagem */ | |
@media only screen | |
and (min-device-width : 320px) | |
and (max-device-width : 480px) { | |
/* Aqui vão os estilos*/ | |
} | |
/* Estilo que será visualizado por smartfones em paisagem */ | |
@media only screen | |
and (min-width : 321px) { | |
/* Aqui vão os estilos*/ | |
} | |
/* Estilo que será visualizado por smartfones em retrato */ | |
@media only screen | |
and (max-width : 320px) { | |
/* Aqui vão os estilos*/ | |
} | |
/* Estilo que será visualizado por iPads tanto em retrato como em paisagem */ | |
@media only screen | |
and (min-device-width : 768px) | |
and (max-device-width : 1024px) { | |
/* Aqui vão os estilos*/ | |
} | |
/* Estilo que será visualizado por iPads em paisagem */ | |
@media only screen | |
and (min-device-width : 768px) | |
and (max-device-width : 1024px) | |
and (orientation : landscape) { | |
/* Aqui vão os estilos*/ | |
} | |
/* Estilo que será visualizado por iPads em retrato */ | |
@media only screen | |
and (min-device-width : 768px) | |
and (max-device-width : 1024px) | |
and (orientation : portrait) { | |
/* Aqui vão os estilos*/ | |
} | |
/* Estilo que será visualizado por computadores */ | |
@media only screen | |
and (min-width : 1224px) { | |
/* Aqui vão os estilos*/ | |
} | |
/* Estilo para telas grandes */ | |
@media only screen | |
and (min-width : 1824px) { | |
/* Aqui vão os estilos*/ | |
} | |
/* Estilo que será visualizado por iPhones 5gen tanto em retrato como em paisagem */ | |
@media only screen | |
and (min-device-width : 320px) | |
and (max-device-width : 568px) { | |
/* Aqui vão os estilos*/ | |
} | |
/* Estilo que será visualizado por iPhones 5gen em paisagem */ | |
@media only screen | |
and (min-device-width : 320px) | |
and (max-device-width : 568px) | |
and (orientation : landscape) { | |
/* Aqui vão os estilos*/ | |
} | |
/* Estilo que será visualizado por iPhones 5gen em retrato */ | |
@media only screen | |
and (min-device-width : 320px) | |
and (max-device-width : 568px) | |
and (orientation : portrait) { | |
/* Aqui vão os estilos*/ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment