-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsims_toys.html
More file actions
119 lines (102 loc) · 4.92 KB
/
sims_toys.html
File metadata and controls
119 lines (102 loc) · 4.92 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>JayLabs | Sims & Toys</title>
<link rel="icon" type="image/png" href="images/Favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;600;700&display=swap');
:root {
--bg-deep: #030511;
--accent-purple: #9d00ff;
--text-1: #ffffff;
--text-2: rgba(200, 220, 255, 0.7);
--glass-border: rgba(255, 255, 255, 0.1);
}
* { box-sizing: border-box; }
body {
margin: 0; min-height: 100vh;
background-color: var(--bg-deep);
background-image:
linear-gradient(rgba(0, 217, 255, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(0, 217, 255, 0.03) 1px, transparent 1px);
background-size: 40px 40px;
color: var(--text-1);
font-family: "Space Grotesk", sans-serif;
padding: 2rem 1.5rem;
}
.container { max-width: 1200px; margin: 0 auto; }
header {
display: flex; justify-content: space-between; align-items: flex-end;
margin-bottom: 3rem; border-bottom: 1px solid var(--glass-border); padding-bottom: 1.5rem;
}
.brand-block h1 {
margin: 0; font-size: 2.5rem; line-height: 1;
background: linear-gradient(to right, #fff, #b4dfff);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.brand-block p { margin: 0.5rem 0 0; color: var(--accent-purple); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.9rem; }
.back-link {
color: var(--text-2); text-decoration: none; font-size: 0.9rem;
display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s;
}
.back-link:hover { color: var(--accent-purple); }
.grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem;
}
.card {
background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
border: 1px solid var(--glass-border); border-radius: 16px; padding: 1.5rem;
text-decoration: none; color: inherit; transition: transform 0.2s, background 0.2s, border-color 0.2s;
display: flex; flex-direction: column; min-height: 240px;
}
.card:hover {
transform: translateY(-5px); background: rgba(255, 255, 255, 0.04);
border-color: var(--accent-purple); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.pill {
font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
padding: 0.25rem 0.75rem; border-radius: 100px; background: rgba(157, 0, 255, 0.1);
color: var(--accent-purple); width: fit-content; margin-bottom: 0.75rem; border: 1px solid rgba(157, 0, 255, 0.3);
}
.card h2 { margin: 0 0 0.5rem; font-size: 1.4rem; color: #fff; }
.card p { font-size: 0.95rem; color: var(--text-2); margin: 0; line-height: 1.5; flex-grow: 1; }
.launch-btn {
margin-top: 1.5rem; color: var(--accent-purple); font-weight: 600; font-size: 0.9rem;
display: flex; align-items: center; gap: 0.5rem;
}
</style>
</head>
<body>
<main class="container">
<header>
<div class="brand-block">
<p>Sandbox</p>
<h1>SIMS & TOYS</h1>
</div>
<a href="index.html" class="back-link">← Main Lab</a>
</header>
<section class="grid">
<a class="card" href="projects/PatternGenerators/PatternStudio.html" target="_blank" rel="noopener">
<div class="pill">Math Art</div>
<h2>Harmonograph Studio</h2>
<p>Audio-reactive lab: sculpt Lissajous curves, layer lights, and snapshot evolving patterns.</p>
<div class="launch-btn">Open Tool →</div>
</a>
<a class="card" href="projects/PatternGenerators/SpiroDeluxe.html" target="_blank" rel="noopener">
<div class="pill">Visuals</div>
<h2>Spirograph Deluxe</h2>
<p>Customizable spirograph sandbox with layered rings, color palettes, and motion controls.</p>
<div class="launch-btn">Open Tool →</div>
</a>
<a class="card" href="projects/OctoGus.html" target="_blank" rel="noopener">
<div class="pill">Physics</div>
<h2>OctoGus</h2>
<p>Interactive physics sandbox with dynamic simulations, controls for gravity, and interactive elements.</p>
<div class="launch-btn">Open Tool →</div>
</a>
</section>
</main>
</body>
</html>