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
<header class="bar-title"> | |
<a class="button" href="#"> | |
Left | |
</a> | |
<ul class="segmented-controller"> | |
<li class="active">One</li> | |
<li>Two</li> | |
<li>Three</li> | |
</ul> | |
<a class="button" href="#"> |
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
<header class="bar-title"> | |
<a class="button" href="#"> | |
Left | |
</a> | |
<h1 class="title">Title</h1> | |
<a class="button" href="#"> | |
Right | |
</a> | |
</header> |
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
<header class="bar-title"> | |
<h1 class="title">Title</h1> | |
</header> |
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
<header class="bar-title"> | |
<h1 class="title">Title</h1> | |
</header> |
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
alias buildit=' | |
cp -r _site/ ../temp | |
&& git checkout gh-pages | |
&& cp -r ../temp/* ./ | |
&& rm -r ../temp | |
&& git add -A | |
&& git status' |
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
$(document).ready(function() { | |
/* Tabs Activiation | |
================================================== */ | |
var tabs = $('ul.tabs'); | |
tabs.each(function(i) { | |
//Get all tabs |
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
$(document).ready(function() { | |
/* Tabs Activiation | |
================================================== */ | |
var tabs = $('ul.tabs'); | |
tabs.each(function(i) { | |
//Get all tabs |
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
$(document).ready(function() { | |
//Global Vars ----------------------------------------------------- | |
var posts = $('.posts'), | |
afterString, | |
subdomain = readParams('r'), | |
loader = $('.wash'), | |
loadMore = $('.loadmore-button'), |
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
/* #Media Queries | |
================================================== */ | |
/* Smaller than standard 960 (devices and browsers) */ | |
@media only screen and (max-width: 959px) {} | |
/* Tablet Portrait size to standard 960 (devices and browsers) */ | |
@media only screen and (min-width: 768px) and (max-width: 959px) {} | |
/* All Mobile Sizes (devices and browser) */ |
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
<!-- Standard Headings --> | |
<h1>Heading</h1> | |
<h2>Heading</h2> | |
<h3>Heading</h3> | |
<h4>Heading</h4> | |
<h5>Heading</h5> | |
<h6>Heading</h6> | |
<!-- Inside blockquote's wrap the content in a <p> then attribute with a <cite> | |
<blockquote> |