202403282100
This commit is contained in:
parent
b21d4cc0a3
commit
749786b64b
2 changed files with 103 additions and 5 deletions
|
@ -63,11 +63,6 @@ import Card from '../components/Card.astro';
|
|||
title="Paste (UHM?)"
|
||||
body="Pastebin Alternative"
|
||||
/>
|
||||
<Card
|
||||
href="https://parrot.ouroboros.group/"
|
||||
title="Paste (UHM?)"
|
||||
body="Pastebin Alternative"
|
||||
/>
|
||||
</ul>
|
||||
<br>
|
||||
<h2><a>Services & Game-Servers</a></h2>
|
||||
|
@ -82,6 +77,11 @@ import Card from '../components/Card.astro';
|
|||
title="Minecraft Server"
|
||||
body="mc.ouroboros.gay | 1.7 --> 1.20"
|
||||
/>
|
||||
<Card
|
||||
href="/xonotic"
|
||||
title="Xonotic Server"
|
||||
body="xonotic.ouroboros.gay | Instagib + Hook"
|
||||
/>
|
||||
<Card
|
||||
href="matrix.ourobros.gay"
|
||||
title="Matrix Server"
|
||||
|
|
98
src/pages/xonotic.astro
Normal file
98
src/pages/xonotic.astro
Normal file
|
@ -0,0 +1,98 @@
|
|||
---
|
||||
import Layout from '../layouts/Layout.astro';
|
||||
---
|
||||
|
||||
<Layout title="Ouroboros Xonotic Info">
|
||||
<main>
|
||||
<h1><span class="text-gradient">Xonotic Server Info</span></h1>
|
||||
<p class="instructions">This server runs 24/7, runs with some custom settings, </a>.</p>
|
||||
<p class="instructions">Maximum occupancy: 30</p>
|
||||
<br>
|
||||
<h3 class="text-gradient">Java Edition</h3>
|
||||
<p>address: <code>mc.ouroboros.gay</code></p>
|
||||
<p>port: <code>25565</code></p>
|
||||
<br>
|
||||
<h3 class="text-gradient">Bedrock Edition</h3>
|
||||
<p>address: <code>mc.ouroboros.gay</code></p>
|
||||
<p>port: <code>19132</code></p>
|
||||
</main>
|
||||
</Layout>
|
||||
|
||||
<style>
|
||||
main {
|
||||
margin: auto;
|
||||
width: 1000px;
|
||||
max-width: calc(100% - 2rem);
|
||||
color: white;
|
||||
font-size: 20px;
|
||||
line-height: 1.6;
|
||||
}
|
||||
.astro-a {
|
||||
position: absolute;
|
||||
top: -32px;
|
||||
left: 50%;
|
||||
transform: translatex(-50%);
|
||||
width: 220px;
|
||||
height: auto;
|
||||
z-index: -1;
|
||||
}
|
||||
h1 {
|
||||
font-size: 4rem;
|
||||
font-weight: 700;
|
||||
line-height: 1;
|
||||
text-align: center;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
h2 {
|
||||
font-size: 3rem;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
}
|
||||
h3 {
|
||||
font-size: 2rem;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
p {
|
||||
font-size: 2rem;
|
||||
font-weight: 700;
|
||||
line-height: 2;
|
||||
text-align: center;
|
||||
}
|
||||
code {
|
||||
background-color: #181926;
|
||||
color: #8bd5ca;
|
||||
}
|
||||
.text-gradient {
|
||||
background-image: var(--accent-gradient);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-size: 400%;
|
||||
background-position: 0%;
|
||||
}
|
||||
.instructions {
|
||||
margin-bottom: 2rem;
|
||||
border: 1px solid rgba(var(--accent-light), 25%);
|
||||
background: linear-gradient(rgba(var(--accent-dark), 66%), rgba(var(--accent-dark), 33%));
|
||||
padding: 1.5rem;
|
||||
border-radius: 8px;
|
||||
}
|
||||
.instructions code {
|
||||
font-size: 0.8em;
|
||||
font-weight: bold;
|
||||
background: rgba(var(--accent-light), 12%);
|
||||
color: rgb(var(--accent-light));
|
||||
border-radius: 4px;
|
||||
padding: 0.3em 0.4em;
|
||||
}
|
||||
.instructions strong {
|
||||
color: rgb(var(--accent-light));
|
||||
}
|
||||
.link-card-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(24ch, 1fr));
|
||||
gap: 2rem;
|
||||
padding: 0;
|
||||
}
|
||||
</style>
|
Loading…
Reference in a new issue