fix: 6034.de — minimal links only, no description
This commit is contained in:
@@ -4,8 +4,7 @@
|
||||
<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 — Personal Project Space</title>
|
||||
<meta name="description" content="Eine Sammlung persönlicher Projekte von m.">
|
||||
<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">
|
||||
@@ -41,7 +40,7 @@
|
||||
main {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
max-width: 640px;
|
||||
max-width: 480px;
|
||||
margin: 0 auto;
|
||||
padding: 4rem 1.5rem;
|
||||
min-height: 100vh;
|
||||
@@ -56,68 +55,41 @@
|
||||
letter-spacing: -0.02em;
|
||||
color: var(--green);
|
||||
line-height: 1;
|
||||
margin-bottom: 1rem;
|
||||
margin-bottom: 2.5rem;
|
||||
}
|
||||
.brand-dot {
|
||||
color: var(--text-dim);
|
||||
}
|
||||
.tagline {
|
||||
color: var(--text-dim);
|
||||
font-size: 1.125rem;
|
||||
margin-bottom: 3rem;
|
||||
max-width: 480px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
.projects {
|
||||
.brand-dot { color: var(--text-dim); }
|
||||
.links {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.75rem;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
.project-card {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 1.25rem 1.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;
|
||||
}
|
||||
.project-card:hover {
|
||||
.link:hover {
|
||||
border-color: var(--green-dim);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
.project-meta {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.25rem;
|
||||
}
|
||||
.project-name {
|
||||
font-weight: 500;
|
||||
font-size: 1rem;
|
||||
}
|
||||
.project-desc {
|
||||
color: var(--text-dim);
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
.project-arrow {
|
||||
.link-arrow {
|
||||
color: var(--green);
|
||||
font-family: var(--font-mono);
|
||||
opacity: 0.6;
|
||||
transition: opacity 0.15s ease, transform 0.15s ease;
|
||||
}
|
||||
.project-card:hover .project-arrow {
|
||||
.link:hover .link-arrow {
|
||||
opacity: 1;
|
||||
transform: translateX(2px);
|
||||
}
|
||||
footer {
|
||||
margin-top: 4rem;
|
||||
color: var(--text-dim);
|
||||
font-size: 0.75rem;
|
||||
font-family: var(--font-mono);
|
||||
}
|
||||
@media (max-width: 480px) {
|
||||
.brand { font-size: 3rem; }
|
||||
main { padding: 3rem 1rem; }
|
||||
@@ -127,17 +99,12 @@
|
||||
<body>
|
||||
<main>
|
||||
<div class="brand">6034<span class="brand-dot">.de</span></div>
|
||||
<p class="tagline">Eine Sammlung persönlicher Projekte. Klein, eigensinnig, immer im Fluss.</p>
|
||||
<div class="projects">
|
||||
<a class="project-card" href="https://grn.msbls.de" target="_blank" rel="noopener">
|
||||
<div class="project-meta">
|
||||
<span class="project-name">🌱 mGreen Journal</span>
|
||||
<span class="project-desc">Indoor Grow — Sensoren, Phasen, Beobachtungen</span>
|
||||
</div>
|
||||
<span class="project-arrow">→</span>
|
||||
<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>
|
||||
<footer>// more soon</footer>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user