This commit is contained in:
Reid 2024-07-04 16:48:57 -07:00
commit 0a1187788c
Signed by: reidlab
GPG key ID: DAF5EAF6665839FD
49 changed files with 11570 additions and 0 deletions

32
src/components/Card.astro Normal file
View file

@ -0,0 +1,32 @@
---
interface Props {
title: string
}
const { title } = Astro.props;
---
<div class="card">
<h2>{title}</h2>
<slot/>
</div>
<style>
.card h2 {
font-family: "Sharp PC3K-2x", monospace;
font-size: 16px;
word-break: break-all;
text-align: center;
padding: 8px 0 4px 0;
background-color: #181818;
color: #eeeeee;
}
.card {
width: fit-content;
height: fit-content;
background-color: #eeeeee;
color: #181818;
box-shadow: .25em .25em #181818;
padding: 1em;
}
</style>