math-tasks/tasks/index.html

128 lines
4.3 KiB
HTML

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Math Tasks — Документы</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap" rel="stylesheet">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Nunito', sans-serif;
background: #f5f3ff;
color: #1e1b4b;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
padding: 60px 24px;
}
h1 { font-size: 2rem; font-weight: 700; margin-bottom: 8px; }
.subtitle { color: #6366f1; font-size: 1.05rem; margin-bottom: 48px; }
h2 {
font-size: 1.3rem; font-weight: 700;
margin: 32px 0 12px; width: 100%; max-width: 720px;
border-bottom: 2px solid #e0e7ff; padding-bottom: 6px;
}
.cards {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 16px;
width: 100%; max-width: 720px;
}
.card {
background: white;
border: 1px solid #e0e7ff;
border-radius: 12px;
padding: 20px 24px;
color: #1e1b4b;
}
.card-title { font-weight: 600; font-size: 1.1rem; margin-bottom: 8px; }
.card-links { display: flex; gap: 12px; }
.card-links a {
font-size: 0.88rem; font-weight: 600;
text-decoration: none; color: #6366f1;
padding: 4px 12px; border-radius: 6px;
border: 1px solid #e0e7ff;
transition: background 0.15s, border-color 0.15s;
}
.card-links a:hover {
background: #f5f3ff; border-color: #a5b4fc;
}
.card-links a.edit {
color: #059669; border-color: #d1fae5;
}
.card-links a.edit:hover {
background: #ecfdf5; border-color: #6ee7b7;
}
</style>
</head>
<body>
<h1>Math Tasks</h1>
<p class="subtitle">Документы для предпросмотра</p>
<!-- Space Exploration -->
<h2>Исследуй Планету</h2>
<div class="cards">
<div class="card">
<div class="card-title">Space Exploration 1 (3 pages)</div>
<div class="card-links">
<a href="/tasks/space-exploration/docs/space-exploration-1.template.html">View</a>
</div>
</div>
<div class="card">
<div class="card-title">Space Worksheet 2 (3 pages)</div>
<div class="card-links">
<a href="/tasks/space-exploration/docs/space-worksheet2.template.html">View</a>
</div>
</div>
<div class="card">
<div class="card-title">Space Worksheet 3 (9 pages)</div>
<div class="card-links">
<a href="/tasks/space-exploration/docs/space-worksheet3.template.html">View</a>
</div>
</div>
</div>
<!-- Collecting Asteroids -->
<h2>Собери Астероиды</h2>
<div class="cards">
<div class="card">
<div class="card-title">Collecting Asteroids 1</div>
<div class="card-links">
<a href="/tasks/collecting-asteroids/docs/collecting-asteroids-1.template.html">View</a>
<a class="edit" href="/tasks/collecting-asteroids/editor.html?file=collecting-asteroids-1">Edit</a>
</div>
</div>
<div class="card">
<div class="card-title">Collecting Asteroids 2</div>
<div class="card-links">
<a href="/tasks/collecting-asteroids/docs/collecting-asteroids-2.template.html">View</a>
<a class="edit" href="/tasks/collecting-asteroids/editor.html?file=collecting-asteroids-2">Edit</a>
</div>
</div>
<div class="card">
<div class="card-title">Collecting Asteroids 3</div>
<div class="card-links">
<a href="/tasks/collecting-asteroids/docs/collecting-asteroids-3.template.html">View</a>
<a class="edit" href="/tasks/collecting-asteroids/editor.html?file=collecting-asteroids-3">Edit</a>
</div>
</div>
</div>
<!-- Space Route -->
<h2>Проложи Маршрут</h2>
<div class="cards">
<div class="card">
<div class="card-title">Space Route 1</div>
<div class="card-links">
<a href="/tasks/space-route/docs/space-route-1.template.html">View</a>
<a class="edit" href="/tasks/space-route/editor.html?file=space-route-1">Edit</a>
</div>
</div>
</div>
</body>
</html>