Files
landing-page/html/styles/introduction.css
2025-10-23 22:15:21 +02:00

27 lines
359 B
CSS

#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; }
}