the cat zone
This commit is contained in:
parent
00cb9c0ab1
commit
6ce8753a38
Binary file not shown.
After Width: | Height: | Size: 6.0 KiB |
Binary file not shown.
After Width: | Height: | Size: 106 KiB |
Binary file not shown.
After Width: | Height: | Size: 23 KiB |
|
@ -5,8 +5,17 @@
|
||||||
margin-top: 100px;
|
margin-top: 100px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.contributors {
|
.block {
|
||||||
// background: ;
|
margin: 70px 0;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.cat {
|
||||||
|
|
||||||
|
padding: 32px 0;
|
||||||
|
|
||||||
|
background: url(/assets/kittycatcat.png);
|
||||||
|
background-size: cover;
|
||||||
|
text-shadow: 0 2px 2px black;
|
||||||
}
|
}
|
||||||
|
|
||||||
.lgbt {
|
.lgbt {
|
||||||
|
|
|
@ -1,6 +1,12 @@
|
||||||
<script>
|
<script>
|
||||||
import styles from './app.module.scss';
|
import styles from './app.module.scss';
|
||||||
console.log(styles)
|
|
||||||
|
let meowo_meow = '';
|
||||||
|
for (let i = 0; i != 50; i++) {
|
||||||
|
const meows = ['meow', 'mowe', 'mewo', 'mweo', 'nya', 'm:3wo'];
|
||||||
|
meowo_meow += meows[Math.floor(Math.random() * meows.length)] + ' ';
|
||||||
|
if (i % 10 === 0 && i != 0) meowo_meow += '<br/>'
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<main class={styles.root}>
|
<main class={styles.root}>
|
||||||
|
@ -15,7 +21,9 @@
|
||||||
<h1>Welcome to the transgirls cafe ^w^</h1>
|
<h1>Welcome to the transgirls cafe ^w^</h1>
|
||||||
<p>This is a small community that is maintained in collective efforts of Germany and Russia (nonputin)</p>
|
<p>This is a small community that is maintained in collective efforts of Germany and Russia (nonputin)</p>
|
||||||
|
|
||||||
<div class={styles.contributors}>
|
</div>
|
||||||
|
|
||||||
|
<div class={styles.block}>
|
||||||
<h1>Contributors</h1>
|
<h1>Contributors</h1>
|
||||||
<table align="center">
|
<table align="center">
|
||||||
<tbody>
|
<tbody>
|
||||||
|
@ -43,5 +51,13 @@
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class={styles.block + ' ' + styles.cat}>
|
||||||
|
<h1>meow mewoweu :3</h1>
|
||||||
|
<p>this is a cat cat kitty cat zone :3</p>
|
||||||
|
<img src='/assets/the_meowo.png' alt='meowo the greatnes :3' width="600px">
|
||||||
|
<h1>Meowo "The greatness"</h1>
|
||||||
|
<p>Worship the great Meowo</p>
|
||||||
|
<p>{@html meowo_meow}</p>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
Loading…
Reference in New Issue