From 9dc4bed7f7fbf143b120bdc51ab79130b447cee2 Mon Sep 17 00:00:00 2001 From: connors Date: Thu, 27 Feb 2014 22:06:35 -0800 Subject: [PATCH 1/2] clean up the version text under our download buttons. --- docs/_includes/download-module.html | 2 +- docs/assets/css/docs.css | 11 +++++++++++ docs/dist/template.html | 6 +++--- docs/index.html | 2 +- sass/docs.scss | 10 ++++++++++ 5 files changed, 26 insertions(+), 5 deletions(-) diff --git a/docs/_includes/download-module.html b/docs/_includes/download-module.html index 318855f..a6f4d80 100644 --- a/docs/_includes/download-module.html +++ b/docs/_includes/download-module.html @@ -2,5 +2,5 @@

Download Ratchet

If you haven't already, download the source code for Ratchet.

Download Ratchet -

Currently v2.0.0

+

Currently v2.0.0

\ No newline at end of file diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index 6014f17..9d57f31 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -56,6 +56,9 @@ body { -moz-animation-duration: 2s; animation-duration: 2s; } +.docs-header .version { + color: rgba(255, 255, 255, 0.5); +} .docs-masthead { position: relative; @@ -300,6 +303,14 @@ body { font-weight: 300; } +.version { + margin-top: 15px; + margin-bottom: 0; + color: #777; + font-size: 90%; + text-align: center; +} + .docs-footer { border-top: 1px solid #ddd; margin-top: 50px; diff --git a/docs/dist/template.html b/docs/dist/template.html index 6416b7c..9577105 100644 --- a/docs/dist/template.html +++ b/docs/dist/template.html @@ -52,7 +52,7 @@
  • - + Ratchet on Github
  • @@ -62,7 +62,7 @@
  • - + Ratchet on Twitter
  • @@ -71,4 +71,4 @@ - \ No newline at end of file + diff --git a/docs/index.html b/docs/index.html index e637f87..cd90959 100644 --- a/docs/index.html +++ b/docs/index.html @@ -8,7 +8,7 @@ title: Ratchet

    Build mobile apps with simple HTML‚ CSS‚ and JS components.

    Download Ratchet -

    Currently v2.0.0

    +

    Currently v2.0.0

    {% include ad.html %} diff --git a/sass/docs.scss b/sass/docs.scss index 256168a..781f17c 100644 --- a/sass/docs.scss +++ b/sass/docs.scss @@ -54,6 +54,9 @@ body { @include animation-name(fadeintext); @include animation-duration(2s); } + .version { + color: rgba(255,255,255,.5) + } } // Masthead @@ -286,6 +289,13 @@ body { .docs-module-title { font-weight: 300; } +.version { + margin-top: 15px; + margin-bottom: 0; + color: #777; + font-size: 90%; + text-align: center; +} // Footer From 872145a92ce38e514a5329c3a4651377254686fe Mon Sep 17 00:00:00 2001 From: connors Date: Thu, 27 Feb 2014 22:12:36 -0800 Subject: [PATCH 2/2] adjusting the text --- docs/assets/css/docs.css | 5 +++-- sass/docs.scss | 7 ++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index 9d57f31..f960dbd 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -57,7 +57,9 @@ body { animation-duration: 2s; } .docs-header .version { + margin-top: 15px; color: rgba(255, 255, 255, 0.5); + text-align: center; } .docs-masthead { @@ -304,11 +306,10 @@ body { } .version { - margin-top: 15px; + margin-top: 10px; margin-bottom: 0; color: #777; font-size: 90%; - text-align: center; } .docs-footer { diff --git a/sass/docs.scss b/sass/docs.scss index 781f17c..e92fcc0 100644 --- a/sass/docs.scss +++ b/sass/docs.scss @@ -55,7 +55,9 @@ body { @include animation-duration(2s); } .version { - color: rgba(255,255,255,.5) + margin-top: 15px; + color: rgba(255,255,255,.5); + text-align: center; } } @@ -290,11 +292,10 @@ body { font-weight: 300; } .version { - margin-top: 15px; + margin-top: 10px; margin-bottom: 0; color: #777; font-size: 90%; - text-align: center; }