Skip to content

Commit

Permalink
Update stylesheet for svg
Browse files Browse the repository at this point in the history
  • Loading branch information
acgaudette committed Oct 9, 2017
1 parent 22e069a commit 3029cfe
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions www/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -82,17 +82,20 @@ body {

.source-link {
display: block;
background: url(/images/GitHub-Mark-32px.png);
width: 32px;
height: 32px;
border-radius: 50%;
margin-right: 15px;
}

.source-link .github-logo {
fill: black;
transition: ease-in-out 0.6s;
-webkit-transition: ease-in-out 0.6s;
}

.source-link:hover {
background: url(/images/GitHub-Mark-Light-32px.png);
.source-link:hover .github-logo {
fill: white;
transition: ease-in-out 0.1s;
-webkit-transition: ease-in-out 0.1s;
}

0 comments on commit 3029cfe

Please sign in to comment.