28 lines
274 B
CSS
28 lines
274 B
CSS
body {
|
|
background: #000000;
|
|
color: #00ff00;
|
|
}
|
|
footer {
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
}
|
|
hr {
|
|
color: #00ff00;
|
|
}
|
|
.tuxcord-image {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 650px;
|
|
}
|
|
a:link {
|
|
color: cyan;
|
|
}
|
|
a:visited {
|
|
color: violet;
|
|
}
|
|
a:hover {
|
|
color: yellow;
|
|
}
|
|
|