Skip to content

Commit

Permalink
Contributing info
Browse files Browse the repository at this point in the history
  • Loading branch information
nie7321 committed Mar 7, 2024
1 parent 1c04ac1 commit 3ec4a7b
Show file tree
Hide file tree
Showing 6 changed files with 59 additions and 3 deletions.
Binary file added public/CardArtTemplate.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/PlaymatTemplate.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions src/components/TemplateFigure.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
interface Props {
src: string;
altText: string;
}
const { src, altText } = Astro.props;
---
<figure class="w-full text-center my-4">
<a href={ src } target="_blank">
<img src={ src } alt={ altText } class="h-auto w-2/3 md:w-1/3 mx-auto">
</a>
<figcaption class="italic text-sm">Click the Template for the Full Size!</figcaption>
</figure>
9 changes: 6 additions & 3 deletions src/layouts/Chrome.astro
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,18 @@ const headTitle = (title ? `${title} | ` : '') + siteName;
<NavDropdownLink href="/Rules_BossMode">Boss Mode</NavDropdownLink>
</NavDropdown>
<NavDropdown label="Cards">
<div class="text-sm text-gray-500">Database</div>
<NavDropdownLink href="/Cards/Character">Character Cards</NavDropdownLink>
<NavDropdownLink href="/Cards/Inventory">Inventory Cards</NavDropdownLink>
<NavDropdownLink href="/Cards/Executable">Executable Cards</NavDropdownLink>
<NavDropdownLink href="/Cards/Planet">Planet Cards</NavDropdownLink>
</NavDropdown>
<NavDropdown label="Sets">
<div class="text-sm text-gray-500 pt-2">Sets</div>
<NavDropdownLink href="/Set1">001- The Opening Note</NavDropdownLink>
</NavDropdown>
<NavLink href="/Credits">Credits</NavLink>
<NavDropdown label="Contribute">
<NavDropdownLink href="/Contributing_Art">Contributing Art</NavDropdownLink>
<NavDropdownLink href="/Credits">Credits</NavDropdownLink>
</NavDropdown>
<NavLink href="https://discord.gg/UYvRMQhPs3">
<img src={DiscordLogo.src} aria-hidden="true" class="inline-block mr-1" style="width: 1.2rem;">
Discord
Expand Down
23 changes: 23 additions & 0 deletions src/pages/Contributing_Art.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
import SiteLayout from "../layouts/SiteLayout.astro";
import TemplateFigure from "../components/TemplateFigure.astro"
---
<SiteLayout title="Contributing Art">
<h1 class="text-4xl mb-5">Contributing Art</h1>

<ul class="homestuck-list pt-4">
<li>Contributing Card / Playmat Art is a <em>pro-bono, volunteer-only position</em>. <strong>Artists will be credited on the card / playmat, and on the <a href="/Credits" class="underline text-web-blue">credits page</a></strong>, and can chose what name and link* (<em>*link is optional</em>) they'd like to be credited with.</li>
<li class="mt-4"><strong>Artists retain full rights to use their artwork</strong>, and are only voluntarily <em>donating</em> the artwork to be used for HSATCG's non-commercial game use. Artists may ask for their art to be removed from HSATCG at anytime.</li>
<li class="mt-4"><strong>Art does not have to be “new” or created originally/solely for HSATCG</strong>. (IE: You can submit art you made/posted before to be used, as long as it formats correctly into the work.)</li>
<li class="mt-4">
Card Art should be at least 300dpi, and sized to 2 inches by 1.75 inches (rectangle) … or use the following, more in-depth template. (If you want to “break the boundaries,” please submit artwork with transparency and be careful not to cover game text!)
<TemplateFigure src="/CardArtTemplate.png" altText="Card art template, with cut-outs to give artists the correct shape"/>
</li>
<li class="mt-4">
Playmat Art should be at least 300dpi and sized to 21 inches by 11 inches, or use the following overlay / template.
<TemplateFigure src="/PlaymatTemplate.png" altText="Card art template, with cut-outs to give artists the correct shape"/>
</li>
<li class="mt-4">Please put in the <a href="https://discord.gg/UYvRMQhPs3" class="underline text-web-blue">HSATCG Discord server</a> which card(s) you are making art for, or have made art for, to help others keep track!</li>
<li class="mt-4">Any use of AI Image Generation or otherwise unoriginal or uncredited use of other artists is not permitted in card art. The artwork must be wholly created by the donating, credited artist(s)</li>
</ul>
</SiteLayout>
16 changes: 16 additions & 0 deletions src/styles/general.scss
Original file line number Diff line number Diff line change
@@ -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;
}

0 comments on commit 3ec4a7b

Please sign in to comment.