17 lines
192 B
CSS
17 lines
192 B
CSS
body {
|
|
background-color: black;
|
|
color: white;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: green;
|
|
}
|
|
|
|
a:hover {
|
|
background-color: rgb(130, 100, 185);
|
|
}
|
|
|
|
footer {
|
|
color: green;
|
|
} |