-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (65 loc) · 1.64 KB
/
Copy pathindex.html
File metadata and controls
65 lines (65 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dice Roller</title>
<style>
body {
font-family: system-ui, sans-serif;
max-width: 400px;
margin: 4rem auto;
padding: 0 1rem;
}
h1 {
margin-bottom: 2rem;
}
ul {
list-style: none;
padding: 0;
}
li {
margin-bottom: 1rem;
}
a {
display: block;
padding: 1rem;
background: #f0f0f0;
border-radius: 4px;
text-decoration: none;
color: #333;
}
a:hover {
background: #e0e0e0;
}
.description {
font-size: 0.9em;
color: #666;
margin-top: 0.25rem;
}
</style>
</head>
<body>
<h1>Dice Roller</h1>
<ul>
<li>
<a href="roller.html">
<strong>Dice Roller</strong>
<div class="description">Full-page dice roller with history</div>
</a>
</li>
<li>
<a href="example_roller.html">
<strong>Example Roller</strong>
<div class="description">Interactive demo for inspecting and highlighting features</div>
</a>
</li>
<li>
<a href="simulation.html">
<strong>Physics Simulation Tuner</strong>
<div class="description">Test tuning the physics parameters</div>
</a>
</li>
</ul>
</body>
</html>