From 8aabfff584fc15e2168a513c2d009c6ddf8c7422 Mon Sep 17 00:00:00 2001 From: Manurbhav Date: Mon, 29 Apr 2024 19:30:18 +0530 Subject: Added Text Font added fonts to make text look more good while not being bold --- src/components/Header.astro | 3 +++ src/components/HomeBody.astro | 4 ++-- src/layouts/Layout.astro | 6 ++++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/src/components/Header.astro b/src/components/Header.astro index 8d857a6..dbf5f5f 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -198,6 +198,9 @@ import 'bootstrap/dist/css/bootstrap.css' .registration{ padding: 1vh; } + @keyframes zoomIn { + /* Empty keyframes animation */ + } } diff --git a/src/components/HomeBody.astro b/src/components/HomeBody.astro index aaec69c..fda9f2d 100644 --- a/src/components/HomeBody.astro +++ b/src/components/HomeBody.astro @@ -487,7 +487,6 @@ const coreteam: CoreTeam[] = [ .faq-container{ padding: 0 10vh; - border-bottom: 1px solid rgb(116, 106, 106); } .faq-container h4{ @@ -498,7 +497,8 @@ const coreteam: CoreTeam[] = [ .faq-container p{ font-size: 2.4vh; - padding: 0 9vh; + padding: 1vh 9vh; + /* border-bottom: 1px solid rgb(116, 106, 106,0.4); */ } .faq-container p span{ diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 7a73ba3..0534b2c 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -34,7 +34,8 @@ const { title } = Astro.props; ); } html { - font-family: 'Roboto Slab', serif !important; + /* font-family: 'Roboto Slab', serif !important; */ + font-family: Trebuchet MS, sans-serif; background: #13151a; background-size: 224px; } @@ -42,7 +43,8 @@ const { title } = Astro.props; width: 100%; overflow-x: hidden; min-width: 460px; - font-family: 'Roboto Slab', serif !important; + /* font-family: 'Roboto Slab', serif !important; */ + font-family: Trebuchet MS, sans-serif; /* min-height: 100vh; */ } code { -- cgit