32 lines
318 B
CSS
32 lines
318 B
CSS
body {
|
|
background: #000000;
|
|
color: #ffffff;
|
|
}
|
|
footer {
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
margin: 5px;
|
|
}
|
|
hr {
|
|
color: #ffffff;
|
|
}
|
|
.tuxcord-image {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 650px;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
a:link {
|
|
color: cyan;
|
|
}
|
|
a:visited {
|
|
color: violet;
|
|
}
|
|
a:hover {
|
|
color: yellow;
|
|
}
|
|
|