24 lines
264 B
SCSS
24 lines
264 B
SCSS
body {
|
|
background-color: #121212;
|
|
color: white;
|
|
}
|
|
|
|
a {
|
|
color: lightseagreen;
|
|
}
|
|
|
|
a:link {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:visited {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
a:active {
|
|
text-decoration: underline;
|
|
} |