31 lines
350 B
CSS
31 lines
350 B
CSS
:root {
|
|
--accent: #28ebb5
|
|
}
|
|
body {
|
|
background: #000000;
|
|
color: #ffffff;
|
|
padding-bottom: 100px;
|
|
}
|
|
footer {
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
background: black;
|
|
}
|
|
#footer-links {
|
|
margin: 10px;
|
|
}
|
|
hr {
|
|
color: #ffffff;
|
|
}
|
|
.tuxcord-image {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 650px;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
color: var(--accent);
|
|
}
|
|
|