From 976cdc488fa4871d163b2a5258e57b599476653d Mon Sep 17 00:00:00 2001 From: connors Date: Tue, 22 Oct 2013 23:53:07 +0100 Subject: [PATCH] Thinner text and some other stuff. --- Gruntfile.js | 2 +- docs-assets/css/docs.css | 18 +++++++++++++++++- index.html | 28 +++++++++++++--------------- lib/sass/docs.scss | 23 ++++++++++++++++++++++- 4 files changed, 53 insertions(+), 18 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index cd301e5..b4a39cb 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -47,7 +47,7 @@ module.exports = function(grunt) { dist: { files: { '<%= meta.distPath %><%= pkg.name %>.css': '<%= meta.srcPath %>sass/ratchet.scss', - '<%= meta.distPath %>theme-classic.css': '<%= meta.srcPath %>sass/theme-classic.scss', + '<%= meta.distPath %>ratchet-theme.css': '<%= meta.srcPath %>sass/theme-classic.scss', '<%= meta.docsPath %>/css/docs.css': '<%= meta.srcPath %>sass/docs.scss' } } diff --git a/docs-assets/css/docs.css b/docs-assets/css/docs.css index 196bb6f..6198321 100644 --- a/docs-assets/css/docs.css +++ b/docs-assets/css/docs.css @@ -40,7 +40,7 @@ h1, h2, h3, h4, h5, h6 { .docs-header .docs-title { margin: 0; font-size: 40px; - font-weight: 400; + font-weight: 300; } .docs-header .docs-subtitle { margin-top: 0; @@ -51,6 +51,22 @@ h1, h2, h3, h4, h5, h6 { line-height: 30px; } +.social { + padding: 0; + list-style: none; + text-align: center; +} +.social li { + height: 20px; + padding-bottom: 25px; + display: inline-block; + vertical-align: top; +} +.social [class*="button"] { + padding: 0; + border: 0; +} + .container { margin-left: auto; margin-right: auto; diff --git a/index.html b/index.html index d8c5e57..8f04263 100644 --- a/index.html +++ b/index.html @@ -16,18 +16,16 @@ base_url: "./" - + diff --git a/lib/sass/docs.scss b/lib/sass/docs.scss index 19908ae..36d7cd2 100644 --- a/lib/sass/docs.scss +++ b/lib/sass/docs.scss @@ -36,7 +36,7 @@ h1, h2, h3, h4, h5, h6 { .docs-title { margin: 0; font-size: 40px; - font-weight: 400; + font-weight: 300; } .docs-subtitle { @@ -49,6 +49,27 @@ h1, h2, h3, h4, h5, h6 { } } +// Overriding the button styles for the social +// -------------------------------------------------- + +.social { + padding: 0; + list-style: none; + text-align: center; + + li { + height: 20px; + padding-bottom: 25px; + display: inline-block; + vertical-align: top; + } + + [class*="button"] { + padding: 0; + border: 0; + } +} + // The Chassis grid // --------------------------------------------------