Skip to content

Commit

Permalink
updated docs for 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jlong committed Sep 2, 2011
1 parent 79f6cd0 commit ba9bae6
Show file tree
Hide file tree
Showing 4 changed files with 196 additions and 187 deletions.
17 changes: 10 additions & 7 deletions docs/assets/css/docs.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ body {
section {
padding-top: 60px;
}
section > .row {
margin-bottom: 10px;
}
#masthead, #footer {
background-color: #049cd9;
background-repeat: no-repeat;
Expand All @@ -21,8 +24,8 @@ section {
background-image: -moz-linear-gradient(#004D9F, #049cd9);
background-image: -o-linear-gradient(top, #004D9F, #049cd9);
background-image: -khtml-gradient(linear, left top, left bottom, from(#004D9F), to(#049cd9));
filter: quote("progid:DXImageTransform.Microsoft.Gradient(StartColorStr='#004D9F', EndColorStr='#049cd9', GradientType=0)");
-ms-filter: quote("progid:DXImageTransform.Microsoft.gradient(startColorStr='#004D9F', EndColorStr='#049cd9', GradientType=0))");
filter: progid:DXImageTransform.Microsoft.Gradient(StartColorStr='#004D9F', EndColorStr='#049cd9', GradientType=0);
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#004D9F', EndColorStr='#049cd9', GradientType=0))";
}
#masthead div.inner, #footer div.inner {
background: transparent url(../img/grid-18px.png) top center;
Expand Down Expand Up @@ -73,8 +76,8 @@ div.quickstart {
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f9f9f9), color-stop(100%, #f5f5f5));
background-image: -webkit-linear-gradient(#f9f9f9, #f5f5f5);
background-image: -o-linear-gradient(#f9f9f9, #f5f5f5);
-ms-filter: quote("progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#f5f5f5', GradientType=0)");
filter: quote("progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#f5f5f5', GradientType=0)");
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#f5f5f5', GradientType=0)";
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#f5f5f5', GradientType=0);
background-image: linear-gradient(#f9f9f9, #f5f5f5);
border-top: 1px solid #fff;
border-bottom: 1px solid #eee;
Expand Down Expand Up @@ -168,7 +171,7 @@ div.mini-layout div {
div.mini-layout div.mini-layout-body {
background-color: #dceaf4;
margin: 0 auto;
width: 450px;
width: 340px;
height: 340px;
}
div.mini-layout.fluid div.mini-layout-sidebar,
Expand All @@ -182,7 +185,7 @@ div.mini-layout.fluid div.mini-layout-sidebar {
height: 340px;
}
div.mini-layout.fluid div.mini-layout-body {
width: 400px;
width: 300px;
margin-left: 10px;
}
/* Topbar special styles
Expand Down Expand Up @@ -236,4 +239,4 @@ img.large-bird {
-------------------------------------------------- */
PRE.prettyprint {
overflow: hidden;
}
}
Binary file modified docs/assets/img/browsers.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 7 additions & 2 deletions docs/assets/js/application.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
$(document).ready(function(){

// Google code prettify
// ====================

prettyPrint();

// scroll spy logic
// ================

var activeTarget,
$window = $(window),
position = {},
$window = $(window),
nav = $('body > .topbar li a'),
targets = nav.map(function () {
return $(this).attr('href');
Expand Down Expand Up @@ -127,4 +132,4 @@ $(document).ready(function(){

});

});
});
Loading

0 comments on commit ba9bae6

Please sign in to comment.