33 lines
357 B
SCSS
33 lines
357 B
SCSS
body {
|
|
background-color: #121212;
|
|
color: white;
|
|
}
|
|
|
|
.current {
|
|
color: white;
|
|
}
|
|
|
|
.mainDiv {
|
|
margin-top: 40px;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
a {
|
|
color: lightseagreen;
|
|
}
|
|
|
|
a:link {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:visited {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
a:active {
|
|
text-decoration: underline;
|
|
} |