This file contains 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
// Hide address bar on mobile devices (except if #hash present, so we don't mess up deep linking). | |
if (Modernizr.touch && !window.location.hash) { | |
$(window).load(function () { | |
setTimeout(function () { | |
window.scrollTo(0, 1); | |
}, 0); | |
}); | |
} |
This file contains 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
/*-----------------------------------------------------------------------------------*/ | |
/* Boostrap Elements | |
/*-----------------------------------------------------------------------------------*/ | |
// carousel demo | |
$('#myCarousel').carousel() | |
$('#testimonio').carousel() | |
// tooltip demo |
This file contains 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
body { | |
font-family: @body-font; | |
color: @text-color; | |
font-size: 100%; | |
line-height: @body-font-line-height; | |
} | |
// links | |
a, |
This file contains 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
<div id="container"> | |
<div class="section"> | |
<h2>Member ROI</h2> | |
<div class="point_content"> | |
<ul class="point"> | |
<li class="current"><a href="#">Networking <span class="hide">Opportunities</span></a></li> | |
<li><a href="#"><span class="hide">Business</span> Assistance</a></li> | |
<li><a href="#">Advertising <span class="hide">Opportunities</span></a></li> | |
</ul> | |
<div class="point_box" style="display: block; "> |
This file contains 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
/*-----------------------------------------------------------------------------------*/ | |
/* Jquery Scroll to top | |
/*-----------------------------------------------------------------------------------*/ | |
jQuery('.top_scroll a').click(function(){ | |
jQuery(this).stop().animate({opacity: '0'}, 200 ,function(){ | |
jQuery('html, body').animate({scrollTop: '0'} ,600,function(){ | |
jQuery('.top_scroll a').stop().animate({opacity: '1'}); | |
}); | |
}); | |
return false; |
This file contains 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
body { | |
background: linear-gradient(#ccc, #fff); | |
font: 14px sans-serif; | |
padding: 20px; | |
} | |
.letter { | |
background: #fff; | |
box-shadow: 0 0 10px rgba(0,0,0,0.3); | |
margin: 26px auto 0; | |
max-width: 550px; |
This file contains 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
<div class="row" id="swipe"> | |
<div class="wrap clearfix ten columns centered"> | |
<nav class="top"><span id='position'><em class='on'>•</em><em>•</em><em>•</em></span></nav> | |
<nav class="btm"><a href='#' id="prev" onclick='slider.prev();return false;'><em><i class="general foundicon-left-arrow"></i></em></a><a href='#' id="next" onclick='slider.next();return false;'><em><i class="general foundicon-right-arrow"></i></em></a></nav> | |
<div id='slider' class="ten columns centered"><div> | |
<div class="swipebox" style='display:block'><div> | |
<p class="h4">TopLine Intelligence</p> | |
<br> | |
<img src="http://motorcitymobility.com/demo/images/tli.png" class="swipe-img"> | |
<p><a class="round button" href="#">View Project</a></p> |
This file contains 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
<nav class="nav_menu"> | |
<div class="container"> | |
<ul> | |
<li class=""><a href="#features">Features</a></li> | |
<li class=""><a href="#teams">Our Teams</a></li> | |
<li class=""><a href="#testimonials">Testimonials</a></li> | |
<li class=""><a href="#contact">Contact Us</a></li> | |
</ul> |
This file contains 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
remove_action( 'genesis_footer', 'genesis_do_footer' ); | |
add_action( 'genesis_footer', 'child_footer_html' ); | |
/** | |
* Custom Footer with HTML. | |
* | |
* @author Greg Rickaby | |
* @since 1.0.0 | |
*/ | |
function child_footer_html() { ?> |
OlderNewer