tuxcord.net/index.css

51 lines
687 B
CSS
Raw Normal View History

2024-12-24 04:26:02 +01:00
:root {
--accent: #28ebb5
}
2024-12-23 16:36:20 +01:00
body {
background: #000000;
2024-12-24 03:37:21 +01:00
color: #ffffff;
2024-12-24 04:26:02 +01:00
padding-bottom: 100px;
2024-12-23 16:36:20 +01:00
}
2024-12-23 16:43:47 +01:00
footer {
position: fixed;
bottom: 0;
width: 100%;
2024-12-24 04:26:02 +01:00
background: black;
}
#footer-links {
margin: 10px;
2024-12-23 16:43:47 +01:00
}
hr {
2024-12-24 03:37:21 +01:00
color: #ffffff;
2024-12-23 16:43:47 +01:00
}
2024-12-23 16:36:20 +01:00
.tuxcord-image {
position: absolute;
top: 0;
left: 650px;
}
2024-12-24 03:37:21 +01:00
a {
text-decoration: none;
2024-12-24 04:26:02 +01:00
color: var(--accent);
2024-12-23 16:36:20 +01:00
}
a:hover {
animation: half-spin 1s linear infinite;
display: inline-block; /* Ensures the text spins around its center */
}
@keyframes half-spin {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(10deg);
}
50% {
transform: rotate(0deg);
}
75% {
transform: rotate(-10deg);
}
100% {
transform: rotate(0deg);
}
}