Skip to content

Commit

Permalink
update nav buttons font, text decoration.
Browse files Browse the repository at this point in the history
  • Loading branch information
KendallDoesCoding committed Nov 19, 2022
1 parent 65a8145 commit e7b2c20
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
<div class="container-fluid">
<div class="nav--content">
<a href="/lyrics" id="lyrics-btn" class="btn"
>Lyrics/Individual Song Page</a
>Lyrics/Individual Song Page</a
>
<a href="/you-may-like" class="btn" id="lyrics-btn" target="_blank"
>If you liked this album, You May Also Like</a
Expand Down
22 changes: 20 additions & 2 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;1,100;1,300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Handlee&display=swap");
@import url("https://fonts.googleapis.com/css2?family=ZCOOL+QingKe+HuangYou&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');

:root {
--bg-color: white;
Expand Down Expand Up @@ -134,9 +135,10 @@ body {
}

#lyrics-btn {
font-family: Redressed;
color: black;
font-size: larger;
text-decoration: underline;
font-size: x-large;
text-decoration: none;
font-style: italic;
border: none;
margin: 2%;
Expand Down Expand Up @@ -924,6 +926,22 @@ and (max-device-width: 1024px) {
width: -webkit-fill-available;
}

.nav--content:link {
text-decoration: none;
}

.nav--content:visited {
text-decoration: none;
}

.nav--content:hover {
text-decoration: underline;
}

.nav--content:active {
text-decoration: underline;
}

.toggler{
visibility:visible;
}
Expand Down

0 comments on commit e7b2c20

Please sign in to comment.