working_on_game_description_from_API_line_No-74

This commit is contained in:
2023-08-31 20:08:02 +05:30
parent 35c4c21b30
commit dc84dad317
4 changed files with 433 additions and 89 deletions

View File

@@ -33,4 +33,18 @@ const { title } = Astro.props;
font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
Bitstream Vera Sans Mono, Courier New, monospace;
} */
body{
font-family: quicksand;
animation: fadeInAnimation ease 6s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
</style>