13 lines
148 B
CSS
13 lines
148 B
CSS
body {
|
|
background-color: black;
|
|
color: white;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: green;
|
|
}
|
|
|
|
a:hover {
|
|
background-color: blue;
|
|
} |