forked from planex/defiance
change color of links in light mode
This commit is contained in:
parent
b6f5250480
commit
1ab3737b68
1 changed files with 8 additions and 5 deletions
|
@ -4,6 +4,10 @@
|
||||||
background-color: black;
|
background-color: black;
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
color: #f3ccc3;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Light Mode */
|
/* Light Mode */
|
||||||
|
@ -11,6 +15,10 @@
|
||||||
body {
|
body {
|
||||||
background-color: white;
|
background-color: white;
|
||||||
}
|
}
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
color: #da644a;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Universal */
|
/* Universal */
|
||||||
|
@ -18,11 +26,6 @@ body {
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
|
||||||
text-decoration: none;
|
|
||||||
color: #f3ccc3;
|
|
||||||
}
|
|
||||||
|
|
||||||
header h1 {
|
header h1 {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue