mirror of
https://github.com/Fluffy-Bean/website.git
synced 2024-12-28 02:16:10 +00:00
Merge remote-tracking branch 'origin/main'
# Conflicts: # package-lock.json
This commit is contained in:
commit
4cdfec7c38
BIN
src/assets/art/kissing-men.png
Normal file
BIN
src/assets/art/kissing-men.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 267 KiB |
BIN
src/assets/art/mood.png
Normal file
BIN
src/assets/art/mood.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 602 KiB |
BIN
src/assets/art/ref.png
Normal file
BIN
src/assets/art/ref.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 184 KiB |
BIN
src/assets/art/sneak.png
Normal file
BIN
src/assets/art/sneak.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 59 KiB |
BIN
src/assets/art/taidum.png
Normal file
BIN
src/assets/art/taidum.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 84 KiB |
|
@ -12,6 +12,7 @@ import GwaGwa from "../assets/fumble.jpg";
|
||||||
<p>GwaGwa</p>
|
<p>GwaGwa</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="secrtion">
|
||||||
<img
|
<img
|
||||||
src={GwaGwa.src}
|
src={GwaGwa.src}
|
||||||
alt="Two Maned wolfs having a disagreement"
|
alt="Two Maned wolfs having a disagreement"
|
||||||
|
@ -19,4 +20,5 @@ import GwaGwa from "../assets/fumble.jpg";
|
||||||
height="575"
|
height="575"
|
||||||
style="height: auto"
|
style="height: auto"
|
||||||
/>
|
/>
|
||||||
|
</div>
|
||||||
</Layout>
|
</Layout>
|
||||||
|
|
82
src/pages/refsheet.astro
Normal file
82
src/pages/refsheet.astro
Normal file
|
@ -0,0 +1,82 @@
|
||||||
|
---
|
||||||
|
import Layout from "../layouts/Layout.astro";
|
||||||
|
import HomeButton from "../components/HomeButton.astro";
|
||||||
|
import Ref from "../assets/art/ref.png";
|
||||||
|
import Sneak from "../assets/art/sneak.png";
|
||||||
|
import Taidum from "../assets/art/taidum.png";
|
||||||
|
import Men from "../assets/art/kissing-men.png";
|
||||||
|
import Mood from "../assets/art/mood.png";
|
||||||
|
---
|
||||||
|
|
||||||
|
<Layout title="Leggy Land - Refsheet">
|
||||||
|
<HomeButton />
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<h1>Refsheet</h1>
|
||||||
|
<p>Maned Wolf moment</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="section">
|
||||||
|
<h2>Refsheet</h2>
|
||||||
|
<img src={Ref.src} alt="FluffyBean" class="art max" />
|
||||||
|
<ul class="pill-list" role="list">
|
||||||
|
<li class="pill size-button">mrHDash</li>
|
||||||
|
<li><a href="https://twitter.com/mrHDash" class="button">Twitter</a></li>
|
||||||
|
<li><a href="https://instagram.com/mrhdash_arts" class="button">Instagram</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="section">
|
||||||
|
<h2>Shep</h2>
|
||||||
|
<img src={Sneak.src} alt="FluffyBean" class="art" />
|
||||||
|
<ul class="pill-list" role="list">
|
||||||
|
<li class="pill size-button">Shep</li>
|
||||||
|
<li><a href="https://twitter.com/ShepGoesBlep" class="button">Twitter</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="section">
|
||||||
|
<h2>Zadok</h2>
|
||||||
|
<img src={Taidum.src} alt="FluffyBean" class="art" />
|
||||||
|
<ul class="pill-list" role="list">
|
||||||
|
<li class="pill size-button">Zadok</li>
|
||||||
|
<li><a href="https://twitter.com/Zadoktater" class="button">Twitter</a></li>
|
||||||
|
<li><button onclick="navigator.clipboard.writeText('zadoknchip'); return;" class="button">Discord</button></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="section">
|
||||||
|
<h2>LordPulex</h2>
|
||||||
|
<img src={Men.src} alt="FluffyBean" class="art" />
|
||||||
|
<ul class="pill-list" role="list">
|
||||||
|
<li class="pill size-button">LordPulex</li>
|
||||||
|
<li><a href="https://twitter.com/LordPulex" class="button">Twitter</a></li>
|
||||||
|
<li><a href="https://pulex.carrd.co/" class="button">Website</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="section">
|
||||||
|
<h2>OggyTheFox</h2>
|
||||||
|
<img src={Mood.src} alt="FluffyBean" class="art" />
|
||||||
|
<ul class="pill-list" role="list">
|
||||||
|
<li class="pill size-button">OggyTheFox</li>
|
||||||
|
<li><a href="https://twitter.com/OggyOsbourne" class="button">Twitter</a></li>
|
||||||
|
<li><a href="https://oggy123.eu/" class="button">Website</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</Layout>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
@import "../styles/vars.scss";
|
||||||
|
|
||||||
|
.art {
|
||||||
|
margin-bottom: 8px;
|
||||||
|
/*padding: 8px;*/
|
||||||
|
|
||||||
|
max-width: 400px;
|
||||||
|
|
||||||
|
border-radius: $radius;
|
||||||
|
/*background: $gray;*/
|
||||||
|
|
||||||
|
&.max {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -27,6 +27,12 @@
|
||||||
height: 40px;
|
height: 40px;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.size-button {
|
||||||
|
padding: 0 20px;
|
||||||
|
height: 35px;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// If its a clickable element
|
// If its a clickable element
|
||||||
|
|
|
@ -9,6 +9,10 @@
|
||||||
padding-bottom: 8px;
|
padding-bottom: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
> img {
|
||||||
|
border-radius: $radius;
|
||||||
|
}
|
||||||
|
|
||||||
&:last-of-type {
|
&:last-of-type {
|
||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue