Skip to content

Commit

Permalink
fix(): add default link color
Browse files Browse the repository at this point in the history
  • Loading branch information
5im0n committed Oct 31, 2015
1 parent 5b39fa3 commit e951390
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions scss/_type.scss
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 e951390

Please sign in to comment.