Skip to content

Commit

Permalink
init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
taitems committed May 5, 2011
0 parents commit d85ac17
Show file tree
Hide file tree
Showing 15 changed files with 2,256 additions and 0 deletions.
Binary file added images/bg_tile.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added includes/fonts/gotham-black-webfont.eot
Binary file not shown.
241 changes: 241 additions & 0 deletions includes/fonts/gotham-black-webfont.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added includes/fonts/gotham-black-webfont.woff
Binary file not shown.
Binary file added includes/fonts/gotham-book-webfont.eot
Binary file not shown.
241 changes: 241 additions & 0 deletions includes/fonts/gotham-book-webfont.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added includes/fonts/gotham-book-webfont.woff
Binary file not shown.
Binary file added includes/fonts/todayshop-bold-webfont.eot
Binary file not shown.
227 changes: 227 additions & 0 deletions includes/fonts/todayshop-bold-webfont.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added includes/fonts/todayshop-bold-webfont.woff
Binary file not shown.
26 changes: 26 additions & 0 deletions includes/interact.js
@@ -0,0 +1,26 @@
$(function() {

var tocWrapper = $("#toc .wrapper");

$("#mainContainer h1").each(function(i,item) {

$("<a />")
.text( $(item).text() )
.attr("href","#")
.data("scrollTo",item)
.appendTo(tocWrapper)

});

});

$("#toc a").live("click", function(e) {

$.scrollTo( $(this).data("scrollTo"), {
duration: 300,
easing: "swing"
});

e.preventDefault();

});
11 changes: 11 additions & 0 deletions includes/jquery.scrollTo-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions includes/respond.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

135 changes: 135 additions & 0 deletions includes/styles.css
@@ -0,0 +1,135 @@
body {
font-family: 'GothamBookRegular', Arial, sans-serif;
background: url('../images/bg_tile.gif');
margin: 0;
}

@font-face {
font-family: 'TodaySHOP-BoldRegular';
src: url('fonts/todayshop-bold-webfont.eot');
src: url('fonts/todayshop-bold-webfont.eot?#iefix') format('eot'),
url('fonts/todayshop-bold-webfont.woff') format('woff'),
url('fonts/todayshop-bold-webfont.svg#webfont4Kksikqx') format('svg');
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: 'GothamBlackRegular';
src: url('fonts/gotham-black-webfont.eot');
src: url('fonts/gotham-black-webfont.eot?#iefix') format('eot'),
url('fonts/gotham-black-webfont.woff') format('woff'),
url('fonts/gotham-black-webfont.svg#webfontUCMzTaiD') format('svg');
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: 'GothamBookRegular';
src: url('fonts/gotham-book-webfont.eot');
src: url('fonts/gotham-book-webfont.eot?#iefix') format('eot'),
url('fonts/gotham-book-webfont.woff') format('woff'),
url('fonts/gotham-book-webfont.ttf') format('truetype'),
url('fonts/gotham-book-webfont.svg#webfonteMFh7whd') format('svg');
font-weight: normal;
font-style: normal;
}





h1, h2, h3, h4, h5 {
/*font-family: 'TodaySHOP-BoldRegular';*/
font-family: 'GothamBlackRegular';
color: #23262d;
text-shadow: 0 1px 0 #FFF;
}

h1 {
margin: 0;
padding: 1em 0;
font-size: 3em;
}

h2 {
padding-bottom: 4px;
border-bottom: 2px solid #23262d;
font-size: 1.3em;
}

h3 {
text-transform: uppercase;
font-size: .9em;
margin: 1.2em 0;
}

p {
font-size: .95em;
margin: 1.3em 0;
line-height: 1.7em;
}

li {
line-height: 2em;
}

p code {
background: rgba(255,248,68,0.15);
padding: 0 2px;
}

#mainContainer {
width: 750px;
margin: 0 auto;
}

.syntaxhighlighter {
padding: 1em;
}

.entry {
margin-bottom: 5em;
}

#toc {
position: fixed;
top: 0;
right: 0;
width: 175px;
height: 100%;
background: #32383f;
}
#toc .wrapper {
padding: 0 15px;
}
#toc a {
font-family: "GothamBookRegular";
display: block;
margin-bottom: 1em;
color: #b1bcc9;
text-decoration: none;
}
#toc a:hover {
color: #e5ecf5;
}
#toc h1 {
margin-top: 1.6em;
font-size: 1.5em;
color: #f5faff;
text-shadow: 0 -1px 0 rgba(0,0,0,0.75);
}

/* === RESPONSIVE LAYOUT STUFF === */
@media screen and (max-width: 950px){
#mainContainer {
width: auto !important;
margin: 0 225px 0 50px !important;
}
}/*/mediaquery*/
@media screen and (max-width: 1281px){
#mainContainer {
width: 50%;
margin: 0 0 0 200px;
}
}/*/mediaquery*/

0 comments on commit d85ac17

Please sign in to comment.