Last active
February 3, 2016 14:40
-
-
Save khoand0000/683b269c84ad9874006d to your computer and use it in GitHub Desktop.
order media
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
/* 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