From 9735f3bd1d8f823402814116464f1e3ae344e3e9 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Tue, 2 Jan 2024 01:35:01 -0500 Subject: Starting to take shape --- src/pages/index.astro | 3 ++- src/pages/index.css | 12 ++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 src/pages/index.css (limited to 'src/pages') diff --git a/src/pages/index.astro b/src/pages/index.astro index 9f15d62..bb8e3a9 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,6 +1,7 @@ --- -import Layout from '../layouts/Layout.astro'; +import Layout from '../layouts/Default.astro'; import { Image } from 'astro:assets'; +import './index.css'; --- diff --git a/src/pages/index.css b/src/pages/index.css new file mode 100644 index 0000000..d242483 --- /dev/null +++ b/src/pages/index.css @@ -0,0 +1,12 @@ +.home { + text-align: center; +} + +.avatar { + border-radius: 50%; +} + +h1 { + font-weight: 500; + font-size: 2.3rem; +} -- cgit v1.2.3