aboutsummaryrefslogtreecommitdiff
path: root/src/layouts/Page.astro
diff options
context:
space:
mode:
authorAndrew Lee <[email protected]>2025-12-12 23:06:44 -0500
committerAndrew Lee <[email protected]>2025-12-12 23:06:44 -0500
commit9230af4a07f43361408344439e07c2fa42bfe66a (patch)
tree0da10f76ca028340cc29863b9de3bc0f1ad7988f /src/layouts/Page.astro
parent64807b47ca636700b91095a12a23deec3692154f (diff)
downloadshiftos-archive-website-9230af4a07f43361408344439e07c2fa42bfe66a.tar.gz
shiftos-archive-website-9230af4a07f43361408344439e07c2fa42bfe66a.tar.bz2
shiftos-archive-website-9230af4a07f43361408344439e07c2fa42bfe66a.zip
more css fixes; the entire site now uses the window; hover effect for close
Diffstat (limited to 'src/layouts/Page.astro')
-rw-r--r--src/layouts/Page.astro16
1 files changed, 12 insertions, 4 deletions
diff --git a/src/layouts/Page.astro b/src/layouts/Page.astro
index c9066be..780bc8d 100644
--- a/src/layouts/Page.astro
+++ b/src/layouts/Page.astro
@@ -1,10 +1,18 @@
---
-import Layout from '../layouts/Layout.astro';
+import Layout from "../layouts/Layout.astro";
const { frontmatter } = Astro.props;
---
<Layout title={frontmatter.title} description={frontmatter.description}>
- <div class="container">
- <slot />
+ <div class="window">
+ <div class="titlebar">
+ <p class="titlebar-text">{frontmatter.title}</p>
+ <div class="titlebar-buttons">
+ <a href="/"><div class="titlebar-box titlebar-box-link"></div></a>
+ </div>
+ </div>
+ <div class="container">
+ <slot />
+ </div>
</div>
-</Layout> \ No newline at end of file
+</Layout>