minimaz-cli 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +43 -66
- package/bin/cli.js +14 -16
- package/package.json +4 -7
- package/templates/default/minimaz.config.json +30 -21
- package/templates/default/src/{index.html → pages/index.html} +101 -86
- package/templates/default/src/public/favicon.ico +0 -0
- package/templates/default/src/public/fonts/bootstrap-icons.woff +0 -0
- package/templates/default/src/public/fonts/bootstrap-icons.woff2 +0 -0
- package/templates/default/src/style.css +3 -321
- package/templates/default/src/styles/base.css +321 -0
- package/templates/default/src/styles/bootstrap-icons.css +8337 -0
- package/templates/default/src/styles/grid-layout.css +44 -0
- package/templates/simple/src/script.js +1 -1
- package/templates/default/public/favicon.ico +0 -0
- /package/templates/default/{public → src/public}/assets/logo.webp +0 -0
|
@@ -0,0 +1,321 @@
|
|
|
1
|
+
/* =========================================================
|
|
2
|
+
ROOT VARIABLES
|
|
3
|
+
========================================================= */
|
|
4
|
+
:root {
|
|
5
|
+
color-scheme: dark;
|
|
6
|
+
|
|
7
|
+
/* Base colors */
|
|
8
|
+
--bg: #222;
|
|
9
|
+
--fg: #999;
|
|
10
|
+
--accent: #60b5e6;
|
|
11
|
+
--accent2: #fdc503;
|
|
12
|
+
--border: #222;
|
|
13
|
+
--code-bg: #1a1a1a;
|
|
14
|
+
|
|
15
|
+
/* UI components */
|
|
16
|
+
--card-bg: #141414;
|
|
17
|
+
--badge-bg: #1e1e1e;
|
|
18
|
+
|
|
19
|
+
/* Typography */
|
|
20
|
+
--font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
|
21
|
+
--font-mono: "Fira Code", monospace;
|
|
22
|
+
|
|
23
|
+
/* Layout */
|
|
24
|
+
--radius-sm: 4px;
|
|
25
|
+
--radius-md: 6px;
|
|
26
|
+
--space-xs: 0.25rem;
|
|
27
|
+
--space-sm: 0.5rem;
|
|
28
|
+
--space-md: 1rem;
|
|
29
|
+
--space-lg: 1.5rem;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
/* =========================================================
|
|
33
|
+
GLOBAL RESET
|
|
34
|
+
========================================================= */
|
|
35
|
+
*,
|
|
36
|
+
*::before,
|
|
37
|
+
*::after {
|
|
38
|
+
box-sizing: border-box;
|
|
39
|
+
margin: 0;
|
|
40
|
+
padding: 0;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
html {
|
|
44
|
+
font-size: 16px;
|
|
45
|
+
scroll-behavior: smooth;
|
|
46
|
+
line-height: 1.6;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
body {
|
|
50
|
+
background-color: var(--bg);
|
|
51
|
+
color: var(--fg);
|
|
52
|
+
font-family: var(--font-sans);
|
|
53
|
+
margin: 0;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/* =========================================================
|
|
57
|
+
STRUCTURAL ELEMENTS
|
|
58
|
+
========================================================= */
|
|
59
|
+
|
|
60
|
+
section {
|
|
61
|
+
margin: 3rem auto;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
/* =========================================================
|
|
65
|
+
HEADER
|
|
66
|
+
========================================================= */
|
|
67
|
+
header {
|
|
68
|
+
text-align: center;
|
|
69
|
+
padding-block: var(--space-md);
|
|
70
|
+
border-bottom: 1px solid var(--border);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
header h1 {
|
|
74
|
+
color: var(--accent);
|
|
75
|
+
font-size: 2rem;
|
|
76
|
+
margin-bottom: 0.25rem;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
main {
|
|
80
|
+
padding: 0 var(--space-md);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
#tagline {
|
|
84
|
+
color: var(--accent2);
|
|
85
|
+
font-weight: 500;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/* =========================================================
|
|
89
|
+
HEADINGS
|
|
90
|
+
========================================================= */
|
|
91
|
+
h2 {
|
|
92
|
+
display: flex;
|
|
93
|
+
align-items: center;
|
|
94
|
+
line-height: 1;
|
|
95
|
+
gap: var(--space-md);
|
|
96
|
+
color: var(--accent);
|
|
97
|
+
margin-bottom: var(--space-md);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
h2 i {
|
|
101
|
+
padding: var(--space-md);
|
|
102
|
+
background-color: var(--accent2);
|
|
103
|
+
border-radius: 100%;
|
|
104
|
+
color: var(--bg);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
h2 span {
|
|
108
|
+
padding: var(--space-md) 0;
|
|
109
|
+
flex-grow: 1;
|
|
110
|
+
border-bottom: 2px solid var(--accent);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
h3 {
|
|
114
|
+
color: var(--accent2);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
/* =========================================================
|
|
118
|
+
TYPOGRAPHY
|
|
119
|
+
========================================================= */
|
|
120
|
+
|
|
121
|
+
ul {
|
|
122
|
+
padding-left: 1.2rem;
|
|
123
|
+
list-style: disc;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
p {
|
|
127
|
+
margin-bottom: var(--space-md);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
p:last-child {
|
|
131
|
+
margin-bottom: 0;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
/* =========================================================
|
|
135
|
+
CODE BLOCKS
|
|
136
|
+
========================================================= */
|
|
137
|
+
code,
|
|
138
|
+
pre {
|
|
139
|
+
font-family: var(--font-mono);
|
|
140
|
+
background-color: var(--code-bg);
|
|
141
|
+
color: var(--accent2);
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
pre {
|
|
145
|
+
padding: var(--space-md);
|
|
146
|
+
border-radius: var(--radius-sm);
|
|
147
|
+
overflow-x: auto;
|
|
148
|
+
border: 1px solid var(--border);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
/* =========================================================
|
|
152
|
+
TABLES
|
|
153
|
+
========================================================= */
|
|
154
|
+
table {
|
|
155
|
+
width: 100%;
|
|
156
|
+
border-collapse: collapse;
|
|
157
|
+
margin-top: var(--space-md);
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
th,
|
|
161
|
+
td {
|
|
162
|
+
text-align: left;
|
|
163
|
+
padding: var(--space-sm);
|
|
164
|
+
border: 1px solid var(--border);
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
th {
|
|
168
|
+
background-color: var(--card-bg);
|
|
169
|
+
color: var(--accent2);
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
tr:nth-child(even) {
|
|
173
|
+
background-color: #151515;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
/* =========================================================
|
|
177
|
+
LINKS
|
|
178
|
+
========================================================= */
|
|
179
|
+
a {
|
|
180
|
+
color: var(--accent);
|
|
181
|
+
text-decoration: none;
|
|
182
|
+
transition: color 0.2s ease;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
a:hover,
|
|
186
|
+
a:focus {
|
|
187
|
+
color: var(--accent2);
|
|
188
|
+
text-decoration: underline;
|
|
189
|
+
outline: none;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
/* =========================================================
|
|
193
|
+
STATUS BADGES
|
|
194
|
+
========================================================= */
|
|
195
|
+
.status {
|
|
196
|
+
font-size: 0.75rem;
|
|
197
|
+
padding: var(--space-xs) var(--space-sm);
|
|
198
|
+
border-radius: var(--radius-sm);
|
|
199
|
+
text-transform: uppercase;
|
|
200
|
+
letter-spacing: 0.5px;
|
|
201
|
+
background-color: var(--badge-bg);
|
|
202
|
+
border: 1px solid var(--border);
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.status-planned {
|
|
206
|
+
color: var(--accent);
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.status-inprogress {
|
|
210
|
+
color: var(--accent2);
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.status-research {
|
|
214
|
+
color: #b98cff;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.status-idea {
|
|
218
|
+
color: #999;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.sr-only {
|
|
222
|
+
display: none;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.max-width {
|
|
226
|
+
max-width: 900px;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
/* =========================================================
|
|
230
|
+
LOGO
|
|
231
|
+
========================================================= */
|
|
232
|
+
header img {
|
|
233
|
+
display: block;
|
|
234
|
+
margin: 0 auto var(--space-sm);
|
|
235
|
+
max-width: 180px;
|
|
236
|
+
width: 100%;
|
|
237
|
+
height: auto;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
/* =========================================================
|
|
241
|
+
FOOTER
|
|
242
|
+
========================================================= */
|
|
243
|
+
/* =========================================================
|
|
244
|
+
ENHANCED FOOTER
|
|
245
|
+
========================================================= */
|
|
246
|
+
|
|
247
|
+
.site-footer {
|
|
248
|
+
margin-top: 4rem;
|
|
249
|
+
padding: var(--space-lg);
|
|
250
|
+
border-top: 1px solid var(--border);
|
|
251
|
+
font-size: 0.9rem;
|
|
252
|
+
color: #999;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.footer-grid {
|
|
256
|
+
display: grid;
|
|
257
|
+
gap: var(--space-lg);
|
|
258
|
+
margin-bottom: 2rem;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
@media (min-width: 700px) {
|
|
262
|
+
.footer-grid {
|
|
263
|
+
grid-template-columns: repeat(3, 1fr);
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.footer-col h3,
|
|
268
|
+
.footer-col h4 {
|
|
269
|
+
margin-bottom: var(--space-sm);
|
|
270
|
+
color: var(--accent);
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.footer-col h4 {
|
|
274
|
+
padding-bottom: var(--space-sm);
|
|
275
|
+
border-bottom: 2px solid var(--accent);
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
.footer-col p {
|
|
279
|
+
margin-bottom: var(--space-sm);
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.footer-col ul {
|
|
283
|
+
list-style: none;
|
|
284
|
+
padding: 0;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.footer-col li {
|
|
288
|
+
margin-top: var(--space-xs);
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.footer-col a {
|
|
292
|
+
color: var(--accent);
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.footer-col a:hover {
|
|
296
|
+
color: var(--accent2);
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.footer-bottom {
|
|
300
|
+
border-top: 1px solid var(--border);
|
|
301
|
+
padding-top: 1rem;
|
|
302
|
+
text-align: center;
|
|
303
|
+
font-size: 0.85rem;
|
|
304
|
+
color: #777;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
/* =========================================================
|
|
309
|
+
ACCESSIBILITY
|
|
310
|
+
========================================================= */
|
|
311
|
+
@media (prefers-reduced-motion: reduce) {
|
|
312
|
+
html {
|
|
313
|
+
scroll-behavior: auto;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
*,
|
|
317
|
+
*::before,
|
|
318
|
+
*::after {
|
|
319
|
+
transition: none !important;
|
|
320
|
+
}
|
|
321
|
+
}
|