Skip to content
This repository has been archived by the owner on May 12, 2019. It is now read-only.

Commit

Permalink
improved a:hover style
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Oct 11, 2015
1 parent 42a4631 commit e8610a4
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions assets/scss/components/_post.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@

#post-content {
a {
transition: all $aside-animation-time;
padding: 0 .2em;

transition: all .5s;

&::after {
position: absolute;
Expand All @@ -42,10 +44,17 @@

content: "";

border-bottom: 1px solid $primary-color;
border-bottom: 1px dashed $primary-color;
}
&:hover {
color: $white;
border-color: $hover-color;
background: $primary-color;
}

&:hover,
&:active {
outline: 0;
}
}
}
Expand Down

0 comments on commit e8610a4

Please sign in to comment.