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
(function() { | |
var script, | |
scripts = document.getElementsByTagName('script')[0]; | |
function load(url) { | |
script = document.createElement('script'); | |
script.async = true; | |
script.src = url; | |
scripts.parentNode.insertBefore(script, scripts); |
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 Queries | |
================================================== */ | |
/* Smartphones (portrait and landscape) ----------- */ | |
@media only screen and (min-width : 320px) and (max-width : 480px) {} | |
/* Smartphones (landscape) ----------- */ | |
@media only screen and (min-width : 321px) {} | |
/* Smartphones (portrait) ----------- */ |
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
/* iPad In Portrait & Landscape */ | |
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {} | |
/* iPad In Landscape */ | |
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {} | |
/* iPad In Portrait */ | |
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {} | |
/* Retina Display iPads */ |
NewerOlder