diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2024-01-02 01:35:01 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2024-01-02 01:35:01 -0500 |
| commit | 9735f3bd1d8f823402814116464f1e3ae344e3e9 (patch) | |
| tree | 757686863b5a04ce45688896af48236e3aa0ad27 /src/pages | |
| parent | a0485ad26353a08562c13c14ea9de73fd705f9de (diff) | |
| download | personal-website-9735f3bd1d8f823402814116464f1e3ae344e3e9.tar.gz personal-website-9735f3bd1d8f823402814116464f1e3ae344e3e9.tar.bz2 personal-website-9735f3bd1d8f823402814116464f1e3ae344e3e9.zip | |
Starting to take shape
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/index.astro | 3 | ||||
| -rw-r--r-- | src/pages/index.css | 12 |
2 files changed, 14 insertions, 1 deletions
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'; --- <Layout title="Andrew Lee"> 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; +} |
