a.subdued‎

This commit is contained in:
Adam Bradley
2013-10-24 20:23:26 -05:00
parent e91614dd47
commit 3891ee60ef

View File

@@ -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;
}
}