Skip to content

Commit

Permalink
navigation: made buttons dynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
Bharath314 committed May 20, 2024
1 parent 30bb987 commit 1d3bc5f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
7 changes: 6 additions & 1 deletion certification/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ body {
border: 1px solid white;
font-family: monospace;
font-size: 1.75rem;
padding: 0.5rem;
}

a {
Expand All @@ -24,4 +23,10 @@ a {
height: 100%;
color: white;
text-decoration: none;
border: 0.5rem solid transparent;
}

a:hover, .button:hover {
background-color: white;
color: black;
}
7 changes: 6 additions & 1 deletion guided/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ body {
border: 1px solid white;
font-family: monospace;
font-size: 1.75rem;
padding: 0.5rem;
}

a {
Expand All @@ -24,4 +23,10 @@ a {
height: 100%;
color: white;
text-decoration: none;
border: 0.5rem solid transparent;
}

a:hover, .button:hover {
background-color: white;
color: black;
}
5 changes: 4 additions & 1 deletion styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,8 @@ a {
text-decoration: none;
}


a:hover {
background-color: white;
color: black;
}

0 comments on commit 1d3bc5f

Please sign in to comment.