32 lines
352 B
SCSS
32 lines
352 B
SCSS
body {
|
|
background-color: #121212;
|
|
color: white;
|
|
}
|
|
|
|
img.imageSquare {
|
|
align-self: center;
|
|
}
|
|
|
|
#image00 {
|
|
background-color: black;
|
|
}
|
|
|
|
a {
|
|
color: lightseagreen;
|
|
}
|
|
|
|
a:link {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:visited {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
a:active {
|
|
text-decoration: underline;
|
|
} |