entrance animation for 'invisible'

This commit is contained in:
Thomas Smith 2023-02-02 18:13:59 -05:00
parent c5fa28e900
commit ded9b1efc1

View file

@ -27,6 +27,17 @@
.inner-glow{
color: #1a1a1a;
text-shadow: 0 0px 18px rgba(255, 255, 255, 0.5);
opacity: 0;
animation: fadeIn 1s ease-in-out forwards;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.code-box{