110 lines
2.3 KiB
HTML
110 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Homekeeper</title>
|
|
<style>
|
|
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
|
background: #f8f9fa;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
header {
|
|
background: #fff;
|
|
border-bottom: 1px solid #dee2e6;
|
|
padding: 1rem 1.5rem;
|
|
}
|
|
|
|
header h1 {
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
color: #212529;
|
|
}
|
|
|
|
main {
|
|
flex: 1;
|
|
padding: 2rem 1.5rem;
|
|
max-width: 600px;
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 0.875rem;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
color: #6c757d;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
|
|
gap: 1rem;
|
|
}
|
|
|
|
.tile {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 0.625rem;
|
|
background: #fff;
|
|
border: 1px solid #dee2e6;
|
|
border-radius: 0.75rem;
|
|
padding: 1.5rem 1rem;
|
|
text-decoration: none;
|
|
color: #212529;
|
|
cursor: pointer;
|
|
transition: box-shadow 0.15s, transform 0.1s;
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
|
|
.tile:hover {
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
.tile:active {
|
|
transform: scale(0.97);
|
|
}
|
|
|
|
.tile-icon {
|
|
font-size: 2rem;
|
|
line-height: 1;
|
|
}
|
|
|
|
.tile-label {
|
|
font-size: 0.9375rem;
|
|
font-weight: 500;
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Homekeeper</h1>
|
|
</header>
|
|
<main>
|
|
<h2>Apps</h2>
|
|
<div class="grid">
|
|
<a class="tile" href="/beekeeper/">
|
|
<span class="tile-icon">🐝</span>
|
|
<span class="tile-label">Beekeeper</span>
|
|
</a>
|
|
<a class="tile" href="/listkeeper/">
|
|
<span class="tile-icon">📋</span>
|
|
<span class="tile-label">Listkeeper</span>
|
|
</a>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|