Skip to content

Commit b4cc6d9

Browse files
committed
fix(style): change default colors for links, add exceptions for navbar links
1 parent 5917eb6 commit b4cc6d9

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/styles/global.css

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,20 @@ code {
3333
monospace;
3434
}
3535

36+
a:not(.nav-element):not(.active-nav-element) {
37+
color: #00FFFF;
38+
text-decoration: none;
39+
}
40+
41+
a:hover:not(.nav-element):not(.active-nav-element) {
42+
color: #00BFFF;
43+
text-decoration: underline;
44+
}
45+
46+
a:visited:not(.nav-element):not(.active-nav-element) {
47+
color: #FF00FF;
48+
}
49+
3650
#root {
3751
min-height: 100vh;
3852
display: flex;

0 commit comments

Comments
 (0)