Skip to content

Commit

Permalink
Merge pull request #4580 from 5im0n/fix-link-color
Browse files Browse the repository at this point in the history
fix(): add default link color
  • Loading branch information
mlynch committed Dec 6, 2015
2 parents 65db032 + e951390 commit 896c476
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions scss/_type.scss
Original file line number Diff line number Diff line change
Expand Up @@ -103,13 +103,13 @@ blockquote {
margin: 0 0 $line-height-computed;
padding: ($line-height-computed / 2) $line-height-computed;
border-left: 5px solid gray;

p {
font-weight: 300;
font-size: ($font-size-base * 1.25);
line-height: 1.25;
}

p:last-child {
margin-bottom: 0;
}
Expand Down Expand Up @@ -148,6 +148,13 @@ address {

// Links
// -------------------------
a {
color: $link-color;

&:hover {
color: $link-hover-color;
}
}

a.subdued {
padding-right: 10px;
Expand Down

0 comments on commit 896c476

Please sign in to comment.