mirror of
https://github.com/ivabus/www
synced 2024-11-22 18:55:06 +03:00
entrance animation for 'invisible'
This commit is contained in:
parent
c5fa28e900
commit
ded9b1efc1
1 changed files with 12 additions and 1 deletions
|
@ -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{
|
||||
|
|
Loading…
Reference in a new issue