88 lines
1.9 KiB
HTML
88 lines
1.9 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="apple-touch-icon" href="https://data.lukasrosier.com/appsmall.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://data.lukasrosier.com">📁</a>
|
|
</div>
|
|
<div>
|
|
<a href="mailto:mail@lukasrosier.com">📧</a>
|
|
</div>
|
|
<div>
|
|
<a href="/book.html">📖</a>
|
|
</div>
|
|
<div>
|
|
<a href="/friends.html" target="_self">🎉</a>
|
|
</div>
|
|
<div>
|
|
<a href="https://social.contingent.space" target="_self">🐙</a>
|
|
</div>
|
|
<div>
|
|
<a href="/now.html">🚀</a>
|
|
</div>
|
|
<div>
|
|
<a href="/about.html">📝</a>
|
|
</div>
|
|
<div>
|
|
<a href="/need.html" title="NEEDS">🤲</a>
|
|
</div>
|
|
<div>
|
|
<a href="/roadmap.html" title="ROADMAP">🗺️</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|