2025-04-10 01:59:20 +10:00
|
|
|
<!-- portal page -->
|
|
|
|
|
|
2025-04-04 19:09:05 +11:00
|
|
|
<template>
|
2025-04-10 01:59:20 +10:00
|
|
|
<div class="landing-div">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<img class="image-card" src="https://img.itch.zone/aW1nLzE3MzE3NDAzLnBuZw==/315x250%23c/pxmt%2BB.png"></img>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
<!-- <br></br>
|
|
|
|
|
|
|
|
|
|
<a href="https://store.steampowered.com/app/2899410/Arcane_Raiders/">
|
|
|
|
|
<div class="landing-card" >
|
|
|
|
|
<h2 class="landing-subheading">Steam</h2>
|
|
|
|
|
<p>Wishlist the game!</p>
|
|
|
|
|
</div>
|
|
|
|
|
</a> -->
|
|
|
|
|
|
|
|
|
|
<br></br>
|
|
|
|
|
|
|
|
|
|
<a href="https://tabby-cat-nya.itch.io/chronochamber">
|
|
|
|
|
<div class="landing-card" >
|
|
|
|
|
<h2 class="landing-subheading">Itch.io</h2>
|
|
|
|
|
<p>Play the game now!</p>
|
|
|
|
|
</div>
|
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
|
<br></br>
|
|
|
|
|
|
|
|
|
|
<a href="https://tabbycat.dev">
|
|
|
|
|
<div class="landing-card" >
|
|
|
|
|
<h2 class="landing-subheading">tabbycat.dev</h2>
|
|
|
|
|
<p>Check out my site!</p>
|
|
|
|
|
</div>
|
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
|
<!-- <br></br>
|
|
|
|
|
|
|
|
|
|
<a href="https://discord.gg/3BPYMHqNve">
|
|
|
|
|
<div class="landing-card" >
|
|
|
|
|
<h2 class="landing-subheading">Discord</h2>
|
|
|
|
|
<p>Chat with the devs and get exclusive updates!</p>
|
|
|
|
|
</div>
|
|
|
|
|
</a> -->
|
|
|
|
|
|
2025-04-04 19:09:05 +11:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
2025-04-05 20:02:54 +11:00
|
|
|
<style scoped>
|
2025-04-10 01:59:20 +10:00
|
|
|
/* Tech Fest Landing Page Styles */
|
|
|
|
|
.landing-div{
|
|
|
|
|
padding: 10%;
|
|
|
|
|
align-items: center;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-left: 15%;
|
|
|
|
|
margin-right: 15%;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.landing-heading{
|
|
|
|
|
font-size: 40px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.landing-subheading{
|
|
|
|
|
font-size: 30px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.landing-card{
|
|
|
|
|
background-color: rgb(132, 0, 184);
|
|
|
|
|
|
|
|
|
|
padding: 10px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
transition: 0.3s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.landing-card:hover {
|
|
|
|
|
background-color: rgb(200, 0, 207);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.image-card{
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
align-items: center;
|
|
|
|
|
text-align: center;
|
|
|
|
|
/* margin-left: auto;
|
|
|
|
|
margin-right: auto; */
|
|
|
|
|
/* max-width: 100%; */
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p, h1, h2{
|
|
|
|
|
color: white;
|
|
|
|
|
font-family:Arial, Helvetica, sans-serif;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:link{
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:visited{
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
2025-04-04 19:09:05 +11:00
|
|
|
|
|
|
|
|
</style>
|