If I understand you correctly, and you want to know the media queries to target a smartphone like the iPhone only when it is held horizontally, try something like this:
@media only screen and (min-width: 480px) and (max-width: 767px) {
/* styles go here */
body {
}
}