Skip to content

Commit

Permalink
Added hover state to links
Browse files Browse the repository at this point in the history
  • Loading branch information
KittyGiraudel committed May 8, 2017
1 parent 80ebccd commit c12be29
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,18 @@ h2 {
white-space: normal;
font-size: 80%;
}

a {
color: rgb(52, 183, 188);
transition-property: background-color, color;
transition-duration: 250ms;
}

a:hover,
a:active {
background-color: rgb(59, 208, 214);
color: white;
border-radius: 0.25em;
padding: 0.25em;
margin: -0.25em;
}

0 comments on commit c12be29

Please sign in to comment.