From a57c45c29d41bfc01031f409f6c165e184bacc9d Mon Sep 17 00:00:00 2001 From: Bradley Sepos Date: Thu, 11 Aug 2016 12:48:44 -0400 Subject: [PATCH] template: Add next steps / continue styles. --- templates/mark1/css/style.css | 28 +++++++++++++++++++++++++++- templates/mark1/template.yaml | 2 +- 2 files changed, 28 insertions(+), 2 deletions(-) diff --git a/templates/mark1/css/style.css b/templates/mark1/css/style.css index 814c0081..dbf9e40b 100644 --- a/templates/mark1/css/style.css +++ b/templates/mark1/css/style.css @@ -282,7 +282,7 @@ article.docs p + pre { article.docs footer { border-top: 1px solid lightgray; - margin-top: 3em; + margin-top: 2em; } .license article.docs footer { @@ -327,7 +327,29 @@ article.docs figcaption { color: rgb(120,120,120); } +article.docs .continue { + margin-top: 2em; + padding-bottom: .1px; + background-color: rgb(252,252,255); +} + +article.docs .continue h2 { + margin: 0; + padding: .625rem .9375rem; + background-color: steelblue; + color: white; + font-family: 'Open Sans', -apple-system, 'Helvetica Neue', Helvetica, 'Droid Sans', Roboto, sans-serif; + font-size: 1.0625rem; + line-height: 1.17647; +} + +article.docs .continue p { + margin-left: .9375rem; + margin-right: .9375rem; +} + article.docs .footnotes { + margin-top: 2em; font-size: .875rem; } @@ -544,6 +566,10 @@ article.docs .footnotes { font-size: 0.825rem; } + article.docs .continue h2 { + font-size: 1.275rem; + } + article.docs .footnotes { font-size: 1.05rem; } diff --git a/templates/mark1/template.yaml b/templates/mark1/template.yaml index a7e1e8ec..fa1d8c6f 100644 --- a/templates/mark1/template.yaml +++ b/templates/mark1/template.yaml @@ -9,5 +9,5 @@ Footer: footer.html Redirect: redirect.html Fonts: fonts/opensans-bold-1.10.woff, fonts/opensans-bold-1.10.woff2, fonts/opensans-bolditalic-1.10.woff, fonts/opensans-bolditalic-1.10.woff2, fonts/opensans-italic-1.10.woff, fonts/opensans-italic-1.10.woff2, fonts/opensans-regular-1.10.woff, fonts/opensans-regular-1.10.woff2, fonts/ropasans-italic-1.002.ttf, fonts/ropasans-italic-1.002.woff, fonts/ropasans-italic-1.002.woff2, fonts/ropasans-regular-1.002.ttf, fonts/ropasans-regular-1.002.woff, fonts/ropasans-regular-1.002.woff2 Scripts: js/vendor/jquery/jquery-2.2.3.min.js, js/vendor/js-cookie/js-cookie-2.1.1.min.js, js/vendor/featherlight/featherlight-1.4.0.min.js, js/scripts.js?2016051901 -Styles: css/vendor/featherlight/featherlight-1.4.0.min.css, css/fonts.css?2016051301, css/style.css?2016062802 +Styles: css/vendor/featherlight/featherlight-1.4.0.min.css, css/fonts.css?2016051301, css/style.css?2016081101 ...