diff --git a/public/CardArtTemplate.png b/public/CardArtTemplate.png new file mode 100644 index 0000000..192575c Binary files /dev/null and b/public/CardArtTemplate.png differ diff --git a/public/PlaymatTemplate.png b/public/PlaymatTemplate.png new file mode 100644 index 0000000..9fd7a0f Binary files /dev/null and b/public/PlaymatTemplate.png differ diff --git a/src/components/TemplateFigure.astro b/src/components/TemplateFigure.astro new file mode 100644 index 0000000..83311ff --- /dev/null +++ b/src/components/TemplateFigure.astro @@ -0,0 +1,14 @@ +--- +interface Props { + src: string; + altText: string; +} + +const { src, altText } = Astro.props; +--- +
+ + { + +
Click the Template for the Full Size!
+
\ No newline at end of file diff --git a/src/layouts/Chrome.astro b/src/layouts/Chrome.astro index d828690..80deccd 100644 --- a/src/layouts/Chrome.astro +++ b/src/layouts/Chrome.astro @@ -52,15 +52,18 @@ const headTitle = (title ? `${title} | ` : '') + siteName; Boss Mode +
Database
Character Cards Inventory Cards Executable Cards Planet Cards -
- +
Sets
001- The Opening Note
- Credits + + Contributing Art + Credits + Discord diff --git a/src/pages/Contributing_Art.astro b/src/pages/Contributing_Art.astro new file mode 100644 index 0000000..b82aaae --- /dev/null +++ b/src/pages/Contributing_Art.astro @@ -0,0 +1,23 @@ +--- +import SiteLayout from "../layouts/SiteLayout.astro"; +import TemplateFigure from "../components/TemplateFigure.astro" +--- + +

Contributing Art

+ + +
\ No newline at end of file diff --git a/src/styles/general.scss b/src/styles/general.scss index 26f9134..d0e6df5 100644 --- a/src/styles/general.scss +++ b/src/styles/general.scss @@ -1,3 +1,19 @@ [x-cloak] { display: none !important; } + +ul.homestuck-list { + @apply pl-0 list-disc ml-10 text-lg mb-8; + + li { + @apply ml-4 pl-4 mb-0; + } + + li::marker { + content: "==>"; + } +} + +strong { + @apply underline underline-offset-4 decoration-2 decoration-dotted italic bg-none; +} \ No newline at end of file