119 lines
4.1 KiB
HTML
119 lines
4.1 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;
|
|
}
|
|
.cards {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
|
|
gap: 16px;
|
|
width: 100%;
|
|
max-width: 720px;
|
|
}
|
|
.card {
|
|
display: block;
|
|
background: white;
|
|
border: 1px solid #e0e7ff;
|
|
border-radius: 12px;
|
|
padding: 20px 24px;
|
|
text-decoration: none;
|
|
color: #1e1b4b;
|
|
transition: box-shadow 0.15s, border-color 0.15s;
|
|
}
|
|
.card:hover {
|
|
border-color: #a5b4fc;
|
|
box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
|
|
}
|
|
.card-title {
|
|
font-weight: 600;
|
|
font-size: 1.1rem;
|
|
margin-bottom: 4px;
|
|
}
|
|
.card-path {
|
|
font-size: 0.82rem;
|
|
color: #6366f1;
|
|
opacity: 0.7;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Math Tasks</h1>
|
|
<p class="subtitle">Документы для предпросмотра</p>
|
|
<div class="cards">
|
|
<a class="card" href="html/space-demo.html">
|
|
<div class="card-title">Space Demo</div>
|
|
<div class="card-path">html/space-demo.html</div>
|
|
</a>
|
|
<a class="card" href="html/space-worksheet.html">
|
|
<div class="card-title">Space Worksheet</div>
|
|
<div class="card-path">html/space-worksheet.html</div>
|
|
</a>
|
|
<a class="card" href="html/space-worksheet2.html">
|
|
<div class="card-title">Space Worksheet 2</div>
|
|
<div class="card-path">html/space-worksheet2.html</div>
|
|
</a>
|
|
<a class="card" href="html/space-worksheet3.html">
|
|
<div class="card-title">Space Worksheet 3 (9 pages)</div>
|
|
<div class="card-path">html/space-worksheet3.html</div>
|
|
</a>
|
|
<a class="card" href="html/test.html">
|
|
<div class="card-title">Test</div>
|
|
<div class="card-path">html/test.html</div>
|
|
</a>
|
|
<a class="card" href="html/collecting-asteroids-1.html">
|
|
<div class="card-title">Собери Астероиды</div>
|
|
<div class="card-path">html/collecting-asteroids-1.html</div>
|
|
</a>
|
|
<a class="card" href="html/collecting-asteroids-2.html">
|
|
<div class="card-title">Собери Астероиды v2</div>
|
|
<div class="card-path">html/collecting-asteroids-2.html</div>
|
|
</a>
|
|
<a class="card" href="html/collecting-asteroids-3.html">
|
|
<div class="card-title">Собери Астероиды v3</div>
|
|
<div class="card-path">html/collecting-asteroids-3.html</div>
|
|
</a>
|
|
<a class="card" href="html/space-route-1.html">
|
|
<div class="card-title">Проложи Маршрут</div>
|
|
<div class="card-path">html/space-route-1.html</div>
|
|
</a>
|
|
<a class="card" href="html/space-route-editor.html" style="border-color: #6366f1; background: #f5f3ff;">
|
|
<div class="card-title">Editor: Проложи Маршрут</div>
|
|
<div class="card-path">Resize, rotate, flip, move objects + route HL</div>
|
|
</a>
|
|
<a class="card" href="html/editor.html?file=collecting-asteroids-3.html" style="border-color: #6366f1; background: #f5f3ff;">
|
|
<div class="card-title">Editor: Собери Астероиды v3</div>
|
|
<div class="card-path">Drag & drop asteroid positions</div>
|
|
</a>
|
|
<a class="card" href="html/editor.html?file=collecting-asteroids-1.html" style="border-color: #6366f1; background: #f5f3ff;">
|
|
<div class="card-title">Editor: Собери Астероиды</div>
|
|
<div class="card-path">Drag & drop asteroid positions</div>
|
|
</a>
|
|
</div>
|
|
</body>
|
|
</html>
|