NX Academy
++ NX Academy +
Passez au niveau supérieur
Suivre le projet sur GitHub
@@ -31,6 +33,28 @@ import BaseLayout from "../layouts/BaseLayout.astro";
color: #FEFEFE;
}
+ h1:hover .first-letter {
+ animation: change-color .8s ease-out infinite;
+ }
+
+ h1:hover .second-letter {
+ animation: change-color .8s ease-out .4s infinite;
+ }
+
+ @keyframes change-color {
+ 0% {
+ color: #FEFEFE;
+ }
+
+ 50% {
+ color: #4effa0;
+ }
+
+ 100% {
+ color: #FEFEFE;
+ }
+ }
+
p {
font-size: 1.25rem;
margin-top: 0;