Skip to content

Commit

Permalink
Added CSS to style footer link states.
Browse files Browse the repository at this point in the history
  • Loading branch information
mwarman committed Jan 30, 2015
1 parent d70ad1b commit 80ed249
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
19 changes: 19 additions & 0 deletions src/main/app/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,22 @@ footer div.row:first-child {
padding-top: 20px;
border-top: 1px solid #bbbbbb;
}

.link-danger:link,.link-danger:visited {
color: #bbbbbb;
}
.link-danger:hover {
color: #e52c23;
}
.link-danger:active {
color: #e52c23;
}
.link-black:link,.link-black:visited {
color: #bbbbbb;
}
.link-black:hover {
color: #000000;
}
.link-danger:active {
color: #000000;
}
6 changes: 3 additions & 3 deletions src/main/app/templates/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
<a href="https://www.youtube.com/channel/UChCCDds_KM-w02yVn7cQI_Q"
title="Watch LeanStacks Instructional Videos on YouTube"
target="_blank"
class="text-muted h3"><i class="fa fa-fw fa-youtube-play"></i></a>
class="text-muted h3 link-danger"><i class="fa fa-fw fa-youtube-play"></i></a>

<a href="https://leanpub.com/leanstacks-marionette-spring"
title="LeanStacks Instructional Publications on LeanPub"
target="_blank"
class="text-muted h3"><i class="fa fa-fw fa-leanpub"></i></a>
class="text-muted h3 link-black"><i class="fa fa-fw fa-leanpub"></i></a>
</p>
</div>
</div>

0 comments on commit 80ed249

Please sign in to comment.