Skip to content

Instantly share code, notes, and snippets.

@khoand0000
Last active February 3, 2016 14:40
Show Gist options
  • Save khoand0000/683b269c84ad9874006d to your computer and use it in GitHub Desktop.
Save khoand0000/683b269c84ad9874006d to your computer and use it in GitHub Desktop.
order media
/* Small devices Tablets (>=768px), ipad 1, 2, 3, air, mini = 678px */
@media (min-width: 768px) {
}
/* Extra small devices: smartphone (iphone 3,4,5: 320; iphone 6: 375; iphone 6+: 414 */
@media (max-width: 767px) {
}
/* iphone 6 plus */
@media (max-width: 414px) {
label.item.item-input.search.maximize {
width: 354px;
}
}
/* iphone 6 */
@media (max-width: 375px) {
label.item.item-input.search.maximize {
width: 315px;
}
}
/* iphone 4, 5 */
@media (max-width: 320px) {
label.item.item-input.search.maximize {
width: 260px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment