Skip to content

Commit 5ccefec

Browse files
committed
updated packages
1 parent e7d1a81 commit 5ccefec

File tree

3 files changed

+78
-33
lines changed

3 files changed

+78
-33
lines changed

package-lock.json

Lines changed: 30 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
"dependencies": {
1313
"@astrojs/check": "^0.9.4",
1414
"@astrojs/mdx": "^4.3.0",
15-
"@astrojs/rss": "^4.0.11",
16-
"@astrojs/sitemap": "^3.4.0",
15+
"@astrojs/rss": "^4.0.12",
16+
"@astrojs/sitemap": "^3.4.1",
1717
"@iconify-json/mdi": "^1.1.68",
18-
"astro": "^5.8.1",
18+
"astro": "^5.9.3",
1919
"three": "^0.174.0",
2020
"typescript": "^5.5.4"
2121
},

src/pages/rabbit-hole.astro

Lines changed: 45 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,23 @@
66
<!-- Primary Layout -->
77
<!-- DOT GRID -->
88
<div class="instructions">
9-
<h1>hjmg</h1>
9+
<h1>Rabbit Hole</h1>
1010
<p>Click the a shape, then drag to any second shape. Repeat</p>
11+
<p>
12+
<span class="icons">
13+
<i class="mdi-pine-tree"></i>
14+
</span> = nouns
15+
<br>
16+
<span class="icons">
17+
<i class="mdi-play"></i>
18+
</span> = verbs
19+
<br>
20+
<span class="icons">
21+
<i class="mdi-star"></i>
22+
</span> = adjectives
23+
<br>
24+
Each connection opens new paths, leading you further into the rabbit hole.
25+
</p>
1126
</div>
1227
<div class="game-container">
1328
<div class="game">
@@ -33,4 +48,32 @@
3348
</p>
3449
</div>
3550
</div>
36-
</body>
51+
</body>
52+
53+
<style>
54+
.icons {
55+
display: inline-flex;
56+
align-items: center;
57+
justify-content: center;
58+
font-size: 2rem;
59+
margin: 0 0.25em;
60+
vertical-align: middle;
61+
}
62+
.icons i {
63+
color: #4caf50; /* tree: green */
64+
margin-right: 0.2em;
65+
}
66+
.icons i.mdi-play {
67+
color: #2196f3; /* verb: blue */
68+
}
69+
.icons i.mdi-star {
70+
color: #ffd600; /* adjective: gold/yellow */
71+
}
72+
.instructions {
73+
background: rgba(255,255,255,0.85);
74+
border-radius: 8px;
75+
padding: 1em 2em;
76+
box-shadow: 0 2px 12px rgba(0,0,0,0.07);
77+
margin-bottom: 2em;
78+
}
79+
</style>

0 commit comments

Comments
 (0)