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
<meta media="(max-width: 480px)" content="mobile" name="breakpoint" > | |
<meta media="(min-width: 481px)" content="mobilelarge" name="breakpoint" > | |
<meta media="(max-width: 1024px)" content="mobile-tablet" name="breakpoint" > | |
<meta media="(min-width: 768px)" content="tablet" name="breakpoint" > | |
<meta media="(min-width: 1016px)" content="desktop" name="breakpoint" > |
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
wp_register_script('match_media', get_stylesheet_directory_uri().'/js/matchMedia.js', array('jquery')); | |
wp_enqueue_script('match_media'); | |
wp_register_script('metaquery', get_stylesheet_directory_uri().'/js/metaquery.min.js', array('jquery','match_media')); | |
wp_enqueue_script('metaquery'); |
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
.section-inner { | |
width:100%; | |
margin: 0 auto; | |
.breakpoint-desktop & { | |
width:60em; | |
background-color: transparent; | |
} | |
} | |
ul.logo-tagline { |
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
/** | |
* youtube_embed_url_parameters function. | |
* | |
* @access public | |
* @param string $html | |
* @param string $url | |
* @param array $args | |
* @return string $html | |
*/ | |
function youtube_embed_url_parameters( $html, $url, $args ) { |
OlderNewer