update timeline page

This commit is contained in:
imohkay 2021-10-22 17:16:00 +05:30
commit b6819c2d30
3 changed files with 81 additions and 39 deletions

View file

@ -4,6 +4,8 @@
--bg-color-3: #ffff00;
--bg-color-4: #ff3399;
--color-link: #ee0;
--spacing: 8px;
--spacing-2: calc(var(--spacing) * 2);
}
@ -48,3 +50,14 @@ nav {
display: none;
}
}
// Animations: Fade In
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}