aboutsummaryrefslogtreecommitdiff
path: root/src/layouts/Page.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/layouts/Page.astro')
-rw-r--r--src/layouts/Page.astro34
1 files changed, 1 insertions, 33 deletions
diff --git a/src/layouts/Page.astro b/src/layouts/Page.astro
index 3731d5e..ea191f8 100644
--- a/src/layouts/Page.astro
+++ b/src/layouts/Page.astro
@@ -1,6 +1,7 @@
---
import Layout from './Default.astro';
const { title, description } = Astro.props;
+import '../styles/Page.css';
---
<Layout title=`${title} - Andrew Lee` description={description}>
@@ -12,36 +13,3 @@ const { title, description } = Astro.props;
<slot />
</div>
</Layout>
-
-<style>
- header {
- display: flex;
- flex-direction: column;
- gap: 0.5em;
- margin: 0;
- text-align: center;
- padding: 0 0 1em;
- }
-
- .header-text {
- font-size: 2em;
- margin: 0;
- }
-
- h2.header-text {
- font-size: 1.5em;
- font-weight: 300;
- }
- .container {
- margin: 1em 10em 1em 10em;
- }
-
- @media (max-width: 992px) {
- .container {
- margin: 10px 20px 10px 20px;
- }
- }
-
-
-
-</style>