18 lines
225 B
CSS
18 lines
225 B
CSS
|
body {
|
||
|
background-color: #191919;
|
||
|
color: white;
|
||
|
font-family: monospace;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
text-decoration: none;
|
||
|
color: lightgrey;
|
||
|
}
|
||
|
a:visited {
|
||
|
color: grey;
|
||
|
}
|
||
|
a:hover {
|
||
|
color: #191919;
|
||
|
background-color: white;
|
||
|
}
|