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
@blue: #009be1; | |
@green: #64c200; | |
@red: #ff1842; | |
@orange: #ffbf00; | |
@yellow: #ffd400; | |
@colors: '@{green}','@{blue}','@{red}','@{orange}','@{yellow}'; | |
.randomFromArray(@min: 1, @max: length(@colors), @int: 0) { | |
@getNum: `Math.random() * (@{max} - @{min} + @{int})`; |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script> | |
<meta charset="utf-8"> | |
<title>transformFixedNav()</title> | |
</head> | |
<body> | |
<header>header</header> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
<style id="jsbin-css"> | |
#player { | |
position: absolute; | |
top: 50%; | |
left: 50%; |
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
// The Code: | |
var url = window.location.host; | |
if (url.indexOf('twitter.com') != -1){ | |
// is Twitter | |
var pic = $('.cards-media-container .media').attr('data-url'); | |
if(pic){ | |
window.open(pic,'_self'); | |
} else { | |
alert('There\'s no photo.'); | |
} |
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
Single: | |
<div class="desktop-only">desktop-only</div> | |
<div class="tablet-only">tablet-only</div> | |
<div class="mobile-only">mobile-only</div> | |
Combined: | |
<div class="desktop-only tablet-only">.desktop-only.tablet-only</div> | |
<div class="tablet-only mobile-only">.tablet-only.mobile-only</div> |
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
<html> | |
<head> | |
<style> | |
.bgParallax { | |
background-image: url('image/background-jpg'); | |
background-position: 50% 0; | |
background-repeat: repeat; | |
background-attachment: fixed; | |
} | |
</style> |
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
<dl class="accordion"> | |
<dt><a href="#">Pellentesque fermentum dolor.</a></dt> | |
<dd>Pellentesque fermentum dolor. Aliquam quam lectus, facilisis auctor, ultrices ut, elementum vulputate, nunc.</dd> | |
<dt><a href="#">Donec nec justo eget felis facilisis fermentum.</a></dt> | |
<dd>Donec nec justo eget felis facilisis fermentum. Aliquam porttitor mauris sit amet orci. Aenean dignissim pellentesque felis.</dd> | |
<dt><a href="#">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</a></dt> | |
<dd>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Phasellus hendrerit. Pellentesque aliquet nibh nec urna. In nisi neque, aliquet vel, dapibus id, mattis vel, nisi. Sed pretium, ligula sollicitudin laoreet viverra, tortor libero sodales leo, eget blandit nunc tortor eu nibh. Nullam mollis. Ut justo. Suspendisse potenti.</dd> | |
</dl> |
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
/** | |
* Columns Equal Height | |
* http://css-tricks.com/equal-height-blocks-in-rows/ | |
* USE: equalHeight(elements); | |
*/ | |
equalHeight = function(container){ | |
var currentTallest = 0, | |
currentRowStart = 0, | |
rowDivs = new Array(), | |
$el, |