contingent-space-website/index.html
2025-04-15 00:02:58 +02:00

109 lines
2.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="icon" href="https://data.lukasrosier.com/spiral.png" type="image/png">
<link rel="apple-touch-icon" href="https://data.lukasrosier.com/spiral.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="light dark">
<link rel="stylesheet" href="style.css">
<title>[CSC]</title>
<base href="https://contingent.space">
<style>
body {
font-size: clamp(6rem, 15vw, 20rem);
overflow: hidden;
}
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
height: 100dvh;
}
.frame {
display: grid;
grid-template-columns: auto auto auto;
grid-template-rows: auto auto auto;
gap: 1rem;
}
.frame div {
border-radius: 1rem;
display: flex;
justify-content: center;
align-items: center;
}
@media (orientation:landscape) {
body {
font-size: clamp(5rem, 9vw, 15rem);
}
.frame {
display: grid;
grid-template-rows: auto auto;
grid-template-columns: auto auto auto auto auto;
gap: 1rem;
}
}
</style>
</head>
<body>
<div class="container">
<div class="frame">
<div>
<a href="https://lukasrosier.com">🐳</a>
</div>
<div>
<a href="https://flux.contingent.space">🌊</a>
</div>
<div>
<a href="https://port.contingent.space" target="_self">🔐</a>
</div>
<div>
<a href="https://git.contingent.space">🐙</a>
</div>
<div>
<a href="https://phanpy.contingent.space" target="_self">📣</a>
</div>
<div>
<a href="https://chat.contingent.space">💬</a>
</div>
<div>
<a href="https://call.contingent.space" title="NEEDS">☎️</a>
</div>
<div>
<a href="https://test.contingent.space" ></a>
</div>
<div>
<a href="https://radio.contingent.space/live" class="internal-link" title="ROADMAP">📻</a>
</div>
<div>
<a href="https://contingent.space/roadmap.html" class="internal-link" title="ROADMAP">🗺️</a>
</div>
<div>
<a href="">🔄</a>
</div>
<audio controls style="width: 50px; height: 20px;">
<source src="https://radio.contingent.space/live" type="audio/mpeg">
</audio>
</div/>
</div>
</body>
<script>
document.querySelectorAll('.internal-link').forEach(link => {
link.addEventListener('click', function (event) {
event.preventDefault();
window.location.href = this.href;
});
});
</html>