From dc84dad317b2f4bf6cf56456d76f9a53741aa3b9 Mon Sep 17 00:00:00 2001 From: Dev 1 Date: Thu, 31 Aug 2023 20:08:02 +0530 Subject: [PATCH] working_on_game_description_from_API_line_No-74 --- src/layouts/Layout.astro | 14 +++ src/pages/drawing/index.astro | 204 +++++++++++++++++++++++++++++++--- src/pages/tick/varient1.astro | 123 ++++++++++++++++---- src/pages/tick/varient2.astro | 181 +++++++++++++++++++++--------- 4 files changed, 433 insertions(+), 89 deletions(-) diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index a49e278..b2b8504 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -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; + } + } diff --git a/src/pages/drawing/index.astro b/src/pages/drawing/index.astro index e4fe25a..32ffba2 100644 --- a/src/pages/drawing/index.astro +++ b/src/pages/drawing/index.astro @@ -9,7 +9,16 @@ import Layout from '../../layouts/Layout.astro';