45 lines
597 B
SCSS
45 lines
597 B
SCSS
body {
|
|
background-color: #121212;
|
|
opacity: 0.10;
|
|
color: white;
|
|
}
|
|
|
|
.current {
|
|
color: white;
|
|
}
|
|
|
|
div.console {
|
|
background-color: darkslategrey;
|
|
color: white;
|
|
padding-left: 10px;
|
|
padding-top: 10px;
|
|
padding-bottom: 10px;
|
|
margin-top: 5px;
|
|
margin-bottom: 5px;
|
|
border-radius: 15px;
|
|
}
|
|
|
|
div.outerDiv {
|
|
padding-left: 50px;
|
|
padding-right: 50px;
|
|
}
|
|
|
|
a {
|
|
color: lightseagreen;
|
|
}
|
|
|
|
a:link {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:visited {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
a:active {
|
|
text-decoration: underline;
|
|
} |