-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathg6_pattern_editor.html
More file actions
122 lines (106 loc) · 3.26 KB
/
g6_pattern_editor.html
File metadata and controls
122 lines (106 loc) · 3.26 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
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>G6 Pattern Editor - PanelDisplayTools</title>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=IBM+Plex+Mono:wght@400;600&display=swap" rel="stylesheet">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--bg: #0f1419;
--surface: #1a1f26;
--border: #2d3640;
--text: #e6edf3;
--text-dim: #8b949e;
--accent: #00e676;
--hover: #00c853;
}
body {
font-family: 'IBM Plex Mono', monospace;
background: var(--bg);
color: var(--text);
padding: 2rem;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
header {
margin-bottom: 2rem;
border-bottom: 2px solid var(--border);
padding-bottom: 1.5rem;
}
.nav-link {
display: inline-block;
color: var(--text-dim);
text-decoration: none;
margin-bottom: 1rem;
transition: color 0.2s;
}
.nav-link:hover {
color: var(--accent);
}
h1 {
font-family: 'JetBrains Mono', monospace;
font-size: 2rem;
font-weight: 700;
color: var(--accent);
}
.subtitle {
color: var(--text-dim);
font-size: 0.85rem;
margin-top: 0.5rem;
}
.placeholder {
padding: 60px 40px;
background: var(--surface);
border: 2px dashed var(--border);
text-align: center;
margin-top: 30px;
border-radius: 8px;
}
.placeholder h2 {
color: var(--text);
margin-bottom: 1rem;
}
.placeholder p {
color: var(--text-dim);
line-height: 1.6;
}
footer {
text-align: center;
margin-top: 3rem;
padding-top: 2rem;
border-top: 2px solid var(--border);
color: var(--text-dim);
font-size: 0.85rem;
}
footer a {
color: var(--accent);
text-decoration: none;
transition: color 0.2s;
}
footer a:hover {
color: var(--hover);
}
</style>
</head>
<body>
<div class="container">
<header>
<a href="index.html" class="nav-link">← Back to Tools</a>
<h1>G6 Pattern Editor</h1>
<p class="subtitle">Advanced pattern editor for G6 display systems with multi-panel support and animation tools</p>
</header>
<div class="placeholder">
<h2>Coming Soon</h2>
<p>This tool will allow you to create advanced patterns for G6 display systems.<br>
Design multi-panel layouts, create animations, and export full arena patterns.</p>
</div>
<footer>
<p><a href="https://github.com/reiserlab/webDisplayTools" target="_blank">Reiser Lab</a> | PanelDisplayTools</p>
</footer>
</div>
</body>
</html>