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
// -------------------------------------------------------------- // | |
// APPLICATION GLOBAL ------------------------------------------- // | |
// -------------------------------------------------------------- // | |
// These files need app-required.sass (theme and variables and mixins) | |
// to load. The files imported here are global CSS that will apply to | |
// all applications and, ideally, never need to be recompiled per app. | |
@import app-required.sass // import the stuff required for compile | |
// Styles |
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
// Simple Responsive Grid | |
// based on Chris Eppstein's SASS responsive layouts | |
// http://chriseppstein.github.com/blog/2011/08/21/responsive-layouts-with-sass/ | |
// -------------------------------------------------------------- // | |
// DESKTOP - LARGE - %desktop-large ----------------------------- // | |
// -------------------------------------------------------------- // | |
// 1024px and up to 1280px at which it becomes fixed | |
@media all and (min-width: 1024px) |
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
// detect page width, if it's more than 700px, apply .equalheight to .product_attributes | |
var $win = $(window); | |
console.log($(window).width()); | |
var $widthDiv = $(".product_attributes"); | |
function checkWindowSize(){ | |
console.log($(window).width()); | |
if ($(window).width() >= 700) { | |
// $widthDiv.addClass('equalheight'); | |
// set FAQ product attributes to equal heights | |
var attributeheight = 0; |
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
// -------------------------------------------------------------- // | |
// COLORS ------------------------------------------------------- // | |
// -------------------------------------------------------------- // | |
$black: #000000 | |
$greydark: #464646 | |
$greymedium: #686868 | |
$grey: #9d9d9d | |
$greylight: #adadad |
NewerOlder