Skip to content

Commit

Permalink
Merge branch 'livedoc' into release-0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dszeto committed Apr 14, 2015
2 parents 9df3c74 + ebfe102 commit d73c1a1
Show file tree
Hide file tree
Showing 9 changed files with 37 additions and 13 deletions.
2 changes: 1 addition & 1 deletion docs/manual/source/layouts/tryit.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ doctype html
html
head
= partial 'head/base'
body
body.tryit
#global
= partial 'header'
#page.container
Expand Down
3 changes: 3 additions & 0 deletions docs/manual/source/stylesheets/partials/_footer.css.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@

a {
color: $footer-link-color;
&:hover {
color: $footer-link-hover-color;
}
}

p {
Expand Down
1 change: 1 addition & 0 deletions docs/manual/source/stylesheets/partials/_header.css.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
position: fixed;
top: 0;
left: 0;
z-index: 1000;

.logo {
width: 200px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@
}
ul {
list-style-type: disc;
font-size: 16px;
font-size: 14px;
line-height: 26px;
color: $table-of-contents-font-color;

ul {
list-style-type: disc;
font-size: 14px;
Expand All @@ -24,6 +25,6 @@


a {
color: $table-of-contents-font-color;
color: $table-of-contents-link-color;
}
}
19 changes: 18 additions & 1 deletion docs/manual/source/stylesheets/partials/_tryit.css.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
min-width: 400px;
}

@include medium {
@include large {
.codepicnic {
flex-wrap: nowrap;
}
Expand All @@ -35,3 +35,20 @@
min-height: 500px;
}
}

.tryit {

#main {
width: 100%;
}

#footer {
width: 100%;
margin-left: 0;
}

#copyright {
width: 100%;
margin-left: 0;
}
}
2 changes: 1 addition & 1 deletion docs/manual/source/stylesheets/partials/nav/_main.css.scss
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
font-weight: 400;

color: $nav-main-level-1-font-color;
padding: 10px 0 10px 25px;
padding: 14px 0 10px 25px;

}
// Level 2
Expand Down
14 changes: 8 additions & 6 deletions docs/manual/source/stylesheets/variables/_colors.css.scss
Original file line number Diff line number Diff line change
Expand Up @@ -70,19 +70,21 @@ $code-inline-background-color: #f0f0f0;
$code-inline-border-color: $border-color;

// Table of Contents
$table-of-contents-font-color: #3482ab;
$table-of-contents-link-color: #3482ab;
$table-of-contents-font-color: #828385;
$table-of-contents-background-color: #f0f0f0;

// Footer
$footer-background-color: #2a2b2b;
$footer-link-color: #f0f0f0;
$footer-background-color: #ffffff;
$footer-link-color: #828385;
$footer-link-hover-color: #373535;
$footer-social-link-color: #828385;
$footer-social-link-hover-color: #f0f0f0;
$footer-social-link-hover-color: #373535;
$footer-heading-2-color: #828385;

// Copyright
$copyright-font-color: #f0f0f0;
$copyright-link-color: #f0f0f0;
$copyright-font-color: #828385;
$copyright-link-color: #828385;

// Page Title
$page-title-font-color: #586276;
Expand Down
2 changes: 1 addition & 1 deletion docs/manual/source/stylesheets/variables/_fonts.css.scss
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
$body-font-family: 'Open Sans', sans-serif;;
$body-font-family: 'PT Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
$code-font-family: Consolas, monaco, monospace;
2 changes: 1 addition & 1 deletion docs/manual/source/tryit/index.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,4 @@ title: Try PredictionIO


.iframe
iframe src="https://codepicnic.com/bites/predictionio-0-9-1?sidebar=closed&hostname=predictionio"
iframe src="https://codepicnic.com/bites/predictionio-0-9-1/embed?sidebar=closed&hostname=predictionio&hide=readme"

0 comments on commit d73c1a1

Please sign in to comment.