Simplify css comments and removed not-in-use keyframes

This commit is contained in:
Maddie H 2023-11-26 15:15:25 +00:00
parent 40f9dcdac8
commit 9d552963b5
Signed by: maddie
GPG Key ID: C296DE8C9053683F

View File

@ -1,25 +1,3 @@
/* Fade animation */
@keyframes fade {
0% {
opacity: 1;
}
50% {
opacity: 0.4;
}
100% {
opacity: 1;
}
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/* Globals */ /* Globals */
a { a {
text-decoration: none; text-decoration: none;
@ -48,7 +26,6 @@ body, html {
justify-content: center; justify-content: center;
align-items: center; align-items: center;
height: 100%; height: 100%;
/* Display items one after another */
flex-direction: column; flex-direction: column;
} }
@ -76,9 +53,9 @@ body, html {
width: 300px; width: 300px;
border-radius: 100%; border-radius: 100%;
box-shadow: box-shadow:
0 0 50px 5px black, /* outer cyan */ 0 0 50px 5px black,
0 0 100px 40px #7800B0, /* inner white */ 0 0 100px 40px #7800B0,
0 0 140px 100px black; /* outer cyan */ 0 0 140px 100px black;
} }
/* Social links */ /* Social links */