-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
278 lines (244 loc) · 7.05 KB
/
index.html
File metadata and controls
278 lines (244 loc) · 7.05 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
<!DOCTYPE html>
<html lang="en" class="neo-landing-root">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GitHub Tools Suite</title>
<style>
:root {
--ink: #111111;
--paper: #fff8fd;
--panel: #ffffff;
--lime: #c8ff00;
--pink: #ff3eb5;
--aqua: #00d7ff;
--purple: #7c3cff;
--shadow: 8px 8px 0 var(--ink);
--shadow-sm: 4px 4px 0 var(--ink);
}
*, *::before, *::after { box-sizing: border-box; }
html {
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
min-height: 100vh;
font-family: Inter, Arial, Helvetica, sans-serif;
color: var(--ink);
background:
radial-gradient(circle at 12% 14%, rgba(255, 62, 181, 0.28) 0 12rem, transparent 12.25rem),
radial-gradient(circle at 88% 8%, rgba(0, 215, 255, 0.32) 0 11rem, transparent 11.25rem),
radial-gradient(circle at 70% 92%, rgba(200, 255, 0, 0.3) 0 13rem, transparent 13.25rem),
linear-gradient(135deg, #fff8fd 0%, #effcff 50%, #fbffe0 100%);
}
body::before {
content: "";
position: fixed;
inset: 0;
pointer-events: none;
background:
linear-gradient(90deg, rgba(17,17,17,0.04) 1px, transparent 1px),
linear-gradient(rgba(17,17,17,0.04) 1px, transparent 1px);
background-size: 32px 32px;
mix-blend-mode: multiply;
}
a {
color: inherit;
}
.neo-wrap {
width: min(76rem, calc(100% - 2rem));
margin: 0 auto;
padding: 2rem 0 3rem;
position: relative;
}
.neo-hero {
border: 4px solid var(--ink);
background: var(--lime);
box-shadow: var(--shadow);
padding: clamp(1.2rem, 3vw, 2rem);
margin-bottom: 2rem;
transform: rotate(-0.35deg);
position: relative;
}
.neo-hero::after {
content: "NON-CODER FRIENDLY";
position: absolute;
right: 1.25rem;
top: -1rem;
background: var(--pink);
border: 3px solid var(--ink);
box-shadow: var(--shadow-sm);
padding: 0.4rem 0.65rem;
font-weight: 950;
font-size: 0.75rem;
letter-spacing: 0.06em;
transform: rotate(2deg);
}
.neo-hero h1 {
margin: 0;
max-width: 58rem;
font-size: clamp(2.5rem, 8vw, 6rem);
line-height: 0.88;
letter-spacing: -0.085em;
text-transform: uppercase;
}
.neo-hero p {
max-width: 52rem;
margin: 1rem 0 0;
font-size: clamp(1rem, 2vw, 1.2rem);
line-height: 1.45;
font-weight: 850;
}
.neo-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1.5rem;
align-items: stretch;
}
.neo-card {
display: flex;
flex-direction: column;
min-height: 15rem;
background: var(--panel);
border: 4px solid var(--ink);
box-shadow: var(--shadow);
padding: 1.2rem;
transition: transform 140ms ease, box-shadow 140ms ease;
position: relative;
overflow: hidden;
}
.neo-card::before {
content: "";
display: block;
height: 0.9rem;
margin: -1.2rem -1.2rem 1rem;
background: var(--pink);
border-bottom: 4px solid var(--ink);
}
.neo-card:nth-child(2n)::before { background: var(--aqua); }
.neo-card:nth-child(3n)::before { background: var(--lime); }
.neo-card:nth-child(4n)::before { background: var(--purple); }
.neo-card:hover {
transform: translate(-3px, -3px) rotate(-0.35deg);
box-shadow: 12px 12px 0 var(--ink);
}
.neo-card h3 {
display: inline-block;
align-self: flex-start;
margin: 0 0 0.85rem;
padding: 0.35rem 0.55rem;
background: var(--ink);
color: white;
font-size: 1rem;
line-height: 1.15;
text-transform: uppercase;
letter-spacing: 0.04em;
}
.neo-card p {
margin: 0 0 1.25rem;
font-size: 1rem;
line-height: 1.45;
font-weight: 750;
flex: 1;
}
.neo-btn {
display: inline-flex;
justify-content: center;
align-items: center;
align-self: flex-start;
min-width: 7rem;
padding: 0.65rem 0.9rem;
border: 3px solid var(--ink);
background: var(--pink);
color: var(--ink);
cursor: pointer;
font-weight: 950;
text-transform: uppercase;
text-decoration: none;
box-shadow: var(--shadow-sm);
transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}
.neo-btn:hover {
transform: translate(-2px, -2px);
box-shadow: 6px 6px 0 var(--ink);
background: var(--aqua);
}
.neo-btn:active {
transform: translate(3px, 3px);
box-shadow: 1px 1px 0 var(--ink);
}
@media (max-width: 980px) {
.neo-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 680px) {
.neo-wrap {
width: min(100% - 1rem, 76rem);
padding-top: 1rem;
}
.neo-hero {
transform: none;
}
.neo-hero::after {
position: static;
display: inline-block;
margin-bottom: 0.8rem;
transform: none;
}
.neo-grid {
grid-template-columns: 1fr;
}
.neo-card {
min-height: auto;
}
.neo-btn {
width: 100%;
}
}
</style>
</head>
<body class="neo-landing">
<div class="neo-wrap">
<header class="neo-hero">
<h1>GitHub Tools Suite</h1>
<p>
A collection of lightweight tools for improving your GitHub workflow —
anchors, buttons, links, forms, and more.
</p>
</header>
<div class="neo-grid">
<article class="neo-card">
<h3>README TOC Generator</h3>
<p>Generate a table of contents and anchor links from any README.</p>
<a class="neo-btn" href="./github-anchor-generator.html">Open</a>
</article>
<article class="neo-card">
<h3>Button Generator</h3>
<p>Create GitHub-style badge buttons and links.</p>
<a class="neo-btn" href="./github-button-generator.html">Open</a>
</article>
<article class="neo-card">
<h3>Link Generator</h3>
<p>Build GitHub URLs for repos, issues, templates, and more.</p>
<a class="neo-btn" href="https://monapdx.github.io/github-power-links/">Open</a>
</article>
<article class="neo-card">
<h3>Topic Cloud</h3>
<p>Visualize a user's most common GitHub topics.</p>
<a class="neo-btn" href="./github-topic-cloud.html">Open</a>
</article>
<article class="neo-card">
<h3>Issue Form Builder</h3>
<p>Generate full GitHub issue forms with YAML + assets.</p>
<a class="neo-btn" href="./issue-template-generator.html">Open</a>
</article>
<article class="neo-card">
<h3>GitHub Markdown Builder</h3>
<p>Generator for README.md, GitHub profiles, and other common .md files.</p>
<a class="neo-btn" href="./github_dashboard_builder.html">Open</a>
</article>
</div>
</div>
</body>
</html>