Skip to content

Commit 856e72e

Browse files
committed
Merge branch 'main' of https://github.com/makeabilitylab/js
2 parents 382157f + 707d83a commit 856e72e

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

index.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Makeability Lab — JavaScript Demo Gallery</title>
7+
<style>
8+
body { font-family: system-ui, sans-serif; max-width: 960px; margin: 0 auto; padding: 2rem; }
9+
h1 { font-size: 1.8rem; margin-bottom: 0.25rem; }
10+
h2 { font-size: 1.1rem; color: #555; border-bottom: 1px solid #ddd; padding-bottom: 0.25rem; }
11+
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; margin: 1rem 0 2rem; }
12+
.card { display: block; padding: 1rem; border: 1px solid #ddd; border-radius: 8px; text-decoration: none; color: inherit; transition: box-shadow 0.15s; }
13+
.card:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
14+
.card-name { font-weight: 600; font-size: 0.95rem; }
15+
.card-category { font-size: 0.75rem; color: #888; margin-top: 0.25rem; }
16+
</style>
17+
</head>
18+
<body>
19+
<h1>Makeability Lab — JavaScript Demo Gallery</h1>
20+
21+
</body>
22+
</html>

0 commit comments

Comments
 (0)