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
var height; | |
$(window).bind('load resize', function() { | |
height = 0; | |
$('.equal-height').each(function() { | |
$(this).css('height', 'auto'); | |
$(this).children().each(function() { | |
if($(this).height() > height) { | |
height = $(this).height(); |
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
ul { | |
li { | |
&:before { | |
content: "• "; | |
color: #FF0000; | |
} | |
} | |
} | |
ol { | |
li{ |
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
<!--[if lt IE 7]> <html class="ie ie6 lte9 lte8 lte7"> <![endif]--> | |
<!--[if IE 7]> <html class="ie ie7 lte9 lte8 lte7"> <![endif]--> | |
<!--[if IE 8]> <html class="ie ie8 lte9 lte8"> <![endif]--> | |
<!--[if IE 9]> <html class="ie ie9 lte9"> <![endif]--> | |
<!--[if gt IE 9]> <html> <![endif]--> | |
<!--[if !IE]><!--> <html> <!--<![endif]--> |
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
<time> | |
<div class="spacer"></div> | |
<div class="outer-container"> | |
<div class="inner-container"> | |
<p>22nd</p> | |
<p>September</p> | |
<p>1991</p> | |
</div> | |
</div> | |
</time> |
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
window.onload = function() { | |
var head = document.getElementsByTagName('head')[0]; | |
var link; | |
var stylesheets = [ | |
{ | |
href: '/path/to/stylesheet.css', | |
rel: 'stylesheet', | |
type: 'text/css' | |
}, | |
{ |
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
/* --- EASYDROPDOWN DEFAULT THEME --- */ | |
/* PREFIXED CSS */ | |
.dropdown, | |
.dropdown div, | |
.dropdown li, | |
.dropdown div::after{ | |
-webkit-transition: all 150ms ease-in-out; | |
-moz-transition: all 150ms ease-in-out; |
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
var body; | |
var backgroundPosition; | |
var scrollPosition; | |
var parallaxAmount = 6; | |
$(document).ready(function () { | |
body = $('body'); | |
}); | |
$(window).scroll(function () { |
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
$stylesheet: 'ie'; | |
@import 'rem-function'; | |
.element { | |
margin: rem(20); | |
} |
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
body { | |
font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; | |
font-family: Georgia, Times, "Times New Roman", serif; | |
} |
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
.element { | |
-webkit-font-smoothing: antialiased; | |
text-rendering: optimizeLegibility; | |
} |
OlderNewer