Initial commit

This commit is contained in:
2025-10-23 22:15:21 +02:00
commit 55f963d98b
12 changed files with 279 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
#introduction .content {
flex: 5;
width: 25%;
}
#introduction footer {
flex : 1;
transition: transform 0.5s ease-in-out;
}
footer:hover{
transform: translateY(-20px);
}
hr {
width: 100%;
}
.typer::after {
content: '|';
animation: blink 800ms infinite;
}
@keyframes blink {
from { opacity: 0; }
to { opacity: 1; }
}