Created
February 11, 2015 05:39
-
-
Save mehedicsit/219a65130b0028fa11b8 to your computer and use it in GitHub Desktop.
My customised css3 queries for my personal use
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
| @media (min-width:960px) and (max-width:1500px){ | |
| .slicknav_menu { | |
| background: none repeat scroll 0 0 #4c4c4c; | |
| display: none; | |
| padding: 5px; | |
| } | |
| } | |
| /* #1- Portrait tablet to landscape and desktop */ | |
| @media (min-width: 768px) and (max-width: 1015px) { | |
| } | |
| /* #2- Landscape phone to portrait tablet */ | |
| @media (min-width: 481px) and (max-width: 767px) { | |
| } | |
| /* #3- Landscape phones and down */ | |
| @media (max-width: 480px) { | |
| } | |
| /* very small devices*/ | |
| @media (max-width: 320px){ | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment