diff options
author | Manurbhav | 2024-04-29 19:30:18 +0530 |
---|---|---|
committer | Manurbhav | 2024-04-29 19:30:18 +0530 |
commit | 8aabfff584fc15e2168a513c2d009c6ddf8c7422 (patch) | |
tree | a26a449612854e02ee5a79a1e5ea3fdb4a999f65 | |
parent | 8d3cebe6e7d8c4ab27de3126c1c4aaec26bf2bb9 (diff) | |
download | IotJS-Astro-8aabfff584fc15e2168a513c2d009c6ddf8c7422.tar.gz IotJS-Astro-8aabfff584fc15e2168a513c2d009c6ddf8c7422.tar.bz2 IotJS-Astro-8aabfff584fc15e2168a513c2d009c6ddf8c7422.zip |
Added Text Font
added fonts to make text look more good while not being bold
-rw-r--r-- | src/components/Header.astro | 3 | ||||
-rw-r--r-- | src/components/HomeBody.astro | 4 | ||||
-rw-r--r-- | 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 */ + } } </style> 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 { |