From 3891ee60ef876a4e0142de251c425951f1ca7fae Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Thu, 24 Oct 2013 20:23:26 -0500 Subject: [PATCH] =?UTF-8?q?a.subdued=E2=80=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scss/ionic/_type.scss | 37 +++++++++++++++++++++++++++++++++---- 1 file changed, 33 insertions(+), 4 deletions(-) diff --git a/scss/ionic/_type.scss b/scss/ionic/_type.scss index 18bb8b39f5..5e989feb21 100644 --- a/scss/ionic/_type.scss +++ b/scss/ionic/_type.scss @@ -1,4 +1,4 @@ -// + // Typography // -------------------------------------------------- @@ -20,13 +20,13 @@ p { // Emphasis & misc // ------------------------- -// Ex: 14px base font * 85% = about 12px small { font-size: 85%; } - -// Undo browser default styling cite { font-style: normal; } + // Alignment +// ------------------------- + .text-left { text-align: left; } .text-right { text-align: right; } .text-center { text-align: center; } @@ -74,6 +74,8 @@ h4 small, .h4 small { font-size: $font-size-base; } // Description Lists +// ------------------------- + dl { margin-bottom: $line-height-computed; } @@ -88,7 +90,10 @@ dd { margin-left: 0; // Undo browser default; } + // Blockquotes +// ------------------------- + blockquote { margin: 0 0 $line-height-computed; padding: ($line-height-computed / 2) $line-height-computed; @@ -130,7 +135,10 @@ blockquote { } } + // Quotes +// ------------------------- + q:before, q:after, blockquote:before, @@ -138,10 +146,31 @@ blockquote:after { content: ""; } + // Addresses +// ------------------------- + address { display: block; margin-bottom: $line-height-computed; font-style: normal; line-height: $line-height-base; } + + +// Links +// ------------------------- + +a.subdued‎ { + padding-right:10px; + color: $gray; + text-decoration: none; + + &:hover { + text-decoration: none; + } + &:last-child { + padding-right: 0; + } +} +