43 lines
520 B
SCSS
43 lines
520 B
SCSS
body {
|
|
background-color: #121212;
|
|
color: white;
|
|
}
|
|
|
|
.current {
|
|
color: white;
|
|
}
|
|
|
|
.mainDiv {
|
|
margin-top: 40px;
|
|
margin-bottom: 40px;
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
align-items: center;
|
|
}
|
|
|
|
#image00 {
|
|
background-color: black;
|
|
position: absolute;
|
|
z-index: -1;
|
|
|
|
}
|
|
|
|
a {
|
|
color: lightseagreen;
|
|
}
|
|
|
|
a:link {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:visited {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
a:active {
|
|
text-decoration: underline;
|
|
} |