Skip to content

Commit

Permalink
Style links (#337)
Browse files Browse the repository at this point in the history
- Don't underline by default
- Underline on hover
- Don't change visited link color
  • Loading branch information
casey authored Aug 18, 2022
1 parent 2d59f7e commit 70f86d4
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions static/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,18 @@ h1 {
width: 100%;
}

a {
text-decoration: none;
}

a:hover {
text-decoration: underline;
}

a:visited {
color: blue;
}

.common, .uncommon, .rare, .epic, .legendary, .mythic {
border-radius: 0.25rem;
padding: 0.125rem 0.25rem 0.125rem 0.25rem;
Expand Down

0 comments on commit 70f86d4

Please sign in to comment.