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
/**************************************************************************** | |
TYPOGRAPHY | |
*************************************************************************** */ | |
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,300,900); | |
html { | |
-webkit-font-smoothing: antialiased; | |
-webkit-text-size-adjust: 100%; | |
} | |
body { |
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
/**************************************************************************** | |
GLOBAL | |
*************************************************************************** */ | |
#content .container { | |
background-image: none; | |
} | |
input[type="button"], input[type="submit"], button, .button, #additional .viewAll a, .submit, #hero aside a, .cta { | |
background: #9B1F2E; | |
color: #FFF !important; | |
padding: 5px 10px; |
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
/**************************************************************************** | |
HOMEPAGE | |
*************************************************************************** */ | |
.homepage #content .container { | |
background-image: none; | |
} | |
.homepage #content .container aside { | |
display: none; | |
} | |
.homepage #content .container article { |
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
/**************************************************************************** | |
HERO ROTATOR | |
*************************************************************************** */ | |
#hero{ | |
background: #222 none; | |
color: inherit; | |
position: relative; | |
z-index: 0; | |
margin: 0 auto; | |
padding: 20px 0 40px; |
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
/**************************************************************************** | |
CLASSES | |
*************************************************************************** */ | |
.rule { | |
background-image: none; | |
margin: 20px 0; | |
} | |
.clear { | |
clear: both; | |
font-size: 0px; |
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
<style> | |
/** Add this CSS Import to the top of the main CSS to import FontAwesome **/ | |
@import url("//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css"); | |
/** fontawesome social media icons **/ | |
.facebookIcon, .twitterIcon, .linkedinIcon, .youtubeIcon, .emailIcon, .googleIcon{ | |
font-family: FontAwesome !important; | |
font-weight: normal; | |
font-style: normal; | |
display: inline-block; |
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
<!-- ACCORDION JS --> | |
<script> | |
//** Add this Script to the Custom Head section in the Additional Footer HTML **// | |
$(document).ready(function() { | |
function close_accordion_section() { | |
$('.accordion .accordion-section-title').removeClass('active'); | |
$('.accordion .accordion-section-content').slideUp(300).removeClass('open'); | |
} | |
$('.accordion-section-title').click(function(e) { |
NewerOlder