View color-management-01.scss
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
$old-copper : #6f452b; | |
$tuscany : #c8653a; | |
$hurricane : #94847c; | |
$bone : #e5dbc7; | |
$pattens-blue : #dde7f3; | |
$rain-forest : #696f2b; | |
$lochinvar : #46948d; | |
$jacarta : #4b2b6f; | |
$fire : #8a3528; | |
$azure : #37649b; |
View compass-01.html
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
<style type="text/css"> | |
.clearfix:after | |
{ | |
/*clearfix styles here*/ | |
} | |
#sidebar, | |
#content | |
{ | |
float: left |
View wicket-radio-01.html
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
<input type="radio" name="ticker" value="AAPL"/>Apple<br/> | |
<input type="radio" name="ticker" value="GOOG"/>Google<br/> | |
<input type="radio" name="ticker" value="MSFT"/>Microsoft<br/> |
View css3-foundation-01.txt
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
styles/ | |
basics/ | |
shared/ | |
styles-compiled/ | |
scripts/ | |
lib/ |
View ios5-fixed-positioning.html
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 http-equiv="Content-type" content="text/html; charset=utf-8"/> | |
<meta name="viewport" content="width=device-width, initial-scale=1"/> | |
<title>iOS fixed positioning/JS scroll test</title> | |
<style type="text/css" media="screen"> | |
html |
View html5-placeholder.html
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 lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | |
<meta name="viewport" content="width=device-width, initial-scale=1"/> | |
<title>HTML5 Placeholder</title> | |
<style type="text/css" media="screen"> | |
html |
View markup.html
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
<div id="page"> | |
<header> | |
<a class="home" href="/"><div class="logo"> </div></a> | |
<nav> | |
<a class="gallery" href="gallery.html">Gallery</a> | |
<a class="pricing" href="pricing.html">Pricing</a> | |
<a class="contact" href="mailto:hello@mycompany.com">Contact</a> | |
</nav> | |
</header> | |
</div> <!-- /#page --> |
View favicon.html
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
<!-- Favicons and touch icons --> | |
<!-- For retina-display iPads --> | |
<link href="/assets/images/apple-touch-icon-xlarge.png" rel="apple-touch-icon-precomposed" sizes="144x144" type="image/png"/> | |
<!-- For retina-display iPhones --> | |
<link href="/assets/images/apple-touch-icon-large.png" rel="apple-touch-icon-precomposed" sizes="114x114" type="image/png"/> | |
<!-- For iPad 1 --> | |
<link href="/assets/images/apple-touch-icon-medium.png" rel="apple-touch-icon-precomposed" sizes="72x72" type="image/png"/> | |
<!-- For iPhone 3G, iPod Touch and Android --> | |
<link href="/assets/images/apple-touch-icon-small.png" rel="apple-touch-icon-precomposed" type="image/png"/> | |
<!-- For Nokia --> |
View Rakefile
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
require "rubygems" | |
require "rake" | |
require "fileutils" | |
SOURCE = "." | |
CONFIG = { | |
'themes' => File.join(SOURCE, "_includes", "themes"), | |
'layouts' => File.join(SOURCE, "_layouts"), | |
'posts' => File.join(SOURCE, "_posts"), | |
'post_ext' => "md" |
OlderNewer