@howssatoshi/quantumcss 1.10.1 → 1.11.1
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 +11 -10
- package/dist/quantum.min.css +2 -2
- package/examples/admin-panel.html +303 -608
- package/examples/analytics-dashboard.html +128 -288
- package/examples/blog.css +297 -0
- package/examples/blog.html +216 -0
- package/examples/chat-messaging.html +11 -27
- package/examples/email-client.css +582 -0
- package/examples/email-client.html +432 -0
- package/examples/gaming-portal.css +352 -0
- package/examples/gaming-portal.html +239 -0
- package/examples/index.html +342 -232
- package/examples/kitchen-sink.html +284 -94
- package/examples/music-streaming.html +32 -91
- package/examples/{news-template.html → news.html} +35 -11
- package/examples/{portfolio-resume.html → portfolio.html} +72 -26
- package/examples/shopping.html +812 -0
- package/examples/starlight.html +7 -6
- package/examples/task.md +12 -0
- package/examples/travel.html +514 -0
- package/examples/video-streaming.html +1025 -546
- package/package.json +9 -3
- package/src/cli.js +5 -5
- package/src/defaults.js +18 -16
- package/src/starlight.js +20 -15
- package/src/styles/quantum-base.css +4 -0
- package/src/styles/quantum-components.css +1882 -136
- package/src/styles/quantum-icons.css +345 -0
- package/src/styles/starlight.css +2606 -1186
- package/dist/quantum.css +0 -2374
- package/examples/blog-template.html +0 -288
- package/examples/email-template.html +0 -712
- package/examples/gaming-template.html +0 -471
- package/examples/gradient-test.html +0 -129
- package/examples/shopping/images/headset.jpg +0 -0
- package/examples/shopping/images/sneakers.jpg +0 -0
- package/examples/shopping/images/windbreaker.jpg +0 -0
- package/examples/shopping/index.html +0 -525
- package/examples/theme-test.html +0 -159
- package/examples/travel/index.html +0 -432
- package/examples/verify_fixes.html +0 -52
- package/examples/verify_presets.html +0 -32
- /package/examples/{shopping/nova-shop.css → nova-shop.css} +0 -0
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="UTF-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
-
<title>Quantum CSS - Verify Presets</title>
|
|
7
|
-
<link rel="stylesheet" href="../dist/quantum.min.css">
|
|
8
|
-
<script src="../src/starlight.js"></script>
|
|
9
|
-
</head>
|
|
10
|
-
<body class="bg-gray-50 p-12">
|
|
11
|
-
<div class="max-w-4xl mx-auto space-y-12">
|
|
12
|
-
<h1 class="text-4xl font-bold">Verification: Component Presets</h1>
|
|
13
|
-
|
|
14
|
-
<div class="space-y-4">
|
|
15
|
-
<h2 class="text-xl font-semibold">Buttons</h2>
|
|
16
|
-
<div class="flex gap-4">
|
|
17
|
-
<button class="btn-primary">Primary Preset</button>
|
|
18
|
-
<button class="md="btn-primary"">Responsive Primary</button>
|
|
19
|
-
<button class="btn-secondary">Secondary Preset</button>
|
|
20
|
-
</div>
|
|
21
|
-
</div>
|
|
22
|
-
|
|
23
|
-
<div class="space-y-4">
|
|
24
|
-
<h2 class="text-xl font-semibold">Cards</h2>
|
|
25
|
-
<div class="card-premium max-w-sm">
|
|
26
|
-
<h3 class="text-2xl font-bold mb-4">Premium Card</h3>
|
|
27
|
-
<p class="text-gray-600">This card uses the 'card-premium' preset defined in quantum.config.json.</p>
|
|
28
|
-
</div>
|
|
29
|
-
</div>
|
|
30
|
-
</div>
|
|
31
|
-
</body>
|
|
32
|
-
</html>
|
|
File without changes
|