111 lines
2.8 KiB
HTML
111 lines
2.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
|
|
<meta name="theme-color" content="#0f1210">
|
|
<title>6034.de</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=JetBrains+Mono:wght@400;700&display=swap" rel="stylesheet">
|
|
<style>
|
|
:root {
|
|
--bg: #0f1210;
|
|
--bg-card: #1a1f1c;
|
|
--border: #2d3630;
|
|
--text: #e8ede9;
|
|
--text-dim: #8a9b8e;
|
|
--green: #4ade80;
|
|
--green-dim: #22c55e;
|
|
--font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
|
--font-mono: 'JetBrains Mono', monospace;
|
|
}
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
html, body {
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
font-family: var(--font);
|
|
min-height: 100vh;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
body::before {
|
|
content: "";
|
|
position: fixed;
|
|
inset: 0;
|
|
background-image: radial-gradient(circle at 20% 10%, rgba(74,222,128,0.06), transparent 40%),
|
|
radial-gradient(circle at 80% 90%, rgba(74,222,128,0.04), transparent 40%);
|
|
pointer-events: none;
|
|
z-index: 0;
|
|
}
|
|
main {
|
|
position: relative;
|
|
z-index: 1;
|
|
max-width: 480px;
|
|
margin: 0 auto;
|
|
padding: 4rem 1.5rem;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
.brand {
|
|
font-family: var(--font-mono);
|
|
font-size: 4rem;
|
|
font-weight: 700;
|
|
letter-spacing: -0.02em;
|
|
color: var(--green);
|
|
line-height: 1;
|
|
margin-bottom: 2.5rem;
|
|
}
|
|
.brand-dot { color: var(--text-dim); }
|
|
.links {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
}
|
|
.link {
|
|
padding: 1rem 1.25rem;
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border);
|
|
border-radius: 12px;
|
|
text-decoration: none;
|
|
color: var(--text);
|
|
font-weight: 500;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
transition: border-color 0.15s ease, transform 0.15s ease;
|
|
}
|
|
.link:hover {
|
|
border-color: var(--green-dim);
|
|
transform: translateY(-1px);
|
|
}
|
|
.link-arrow {
|
|
color: var(--green);
|
|
font-family: var(--font-mono);
|
|
opacity: 0.6;
|
|
transition: opacity 0.15s ease, transform 0.15s ease;
|
|
}
|
|
.link:hover .link-arrow {
|
|
opacity: 1;
|
|
transform: translateX(2px);
|
|
}
|
|
@media (max-width: 480px) {
|
|
.brand { font-size: 3rem; }
|
|
main { padding: 3rem 1rem; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<div class="brand">6034<span class="brand-dot">.de</span></div>
|
|
<div class="links">
|
|
<a class="link" href="https://grn.msbls.de" target="_blank" rel="noopener">
|
|
<span>🌱 mGreen</span>
|
|
<span class="link-arrow">→</span>
|
|
</a>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|