[docs] Comprehensive design refresh of landing page
Design iterations (10x each) on all 10 sections: - Hero: Gradient headlines, animated eyebrow, enhanced buttons with shimmer - Stats: Icon system, gradient numbers, hover animations, layered shadows - Philosophy: Pillar cards with gradient borders, animated timeline, tool tags - Agents: Category headers with gradients, badge styling, code block enhancements - Commands: Terminal aesthetic with $ prompts, scanlines, CORE/UTIL badges - Skills: Knowledge module feel, feature pills, category theming - MCP Servers: Server-specific theming (teal/amber), ACTIVE badges, tool counts - Installation: Terminal-style code blocks, step progress indicators - FAQ: Card-based accordion, question/checkmark icons, smooth animations - CTA: Benefit-focused copy, animated badge, trust indicators, glass morphism Design inspired by Evil Martians devtool-template patterns. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
|
After Width: | Height: | Size: 352 KiB |
|
After Width: | Height: | Size: 488 KiB |
|
After Width: | Height: | Size: 372 KiB |
|
After Width: | Height: | Size: 374 KiB |
|
After Width: | Height: | Size: 406 KiB |
|
After Width: | Height: | Size: 468 KiB |
|
After Width: | Height: | Size: 145 KiB |
|
After Width: | Height: | Size: 206 KiB |
|
After Width: | Height: | Size: 273 KiB |
|
After Width: | Height: | Size: 282 KiB |
|
After Width: | Height: | Size: 286 KiB |
|
After Width: | Height: | Size: 51 KiB |
|
After Width: | Height: | Size: 68 KiB |
|
After Width: | Height: | Size: 97 KiB |
|
After Width: | Height: | Size: 115 KiB |
|
After Width: | Height: | Size: 68 KiB |
|
After Width: | Height: | Size: 81 KiB |
|
After Width: | Height: | Size: 122 KiB |
|
After Width: | Height: | Size: 178 KiB |
|
After Width: | Height: | Size: 64 KiB |
|
After Width: | Height: | Size: 76 KiB |
|
After Width: | Height: | Size: 76 KiB |
|
After Width: | Height: | Size: 148 KiB |
|
After Width: | Height: | Size: 79 KiB |
|
After Width: | Height: | Size: 166 KiB |
|
After Width: | Height: | Size: 266 KiB |
|
After Width: | Height: | Size: 93 KiB |
|
After Width: | Height: | Size: 116 KiB |
|
After Width: | Height: | Size: 116 KiB |
|
After Width: | Height: | Size: 116 KiB |
|
After Width: | Height: | Size: 116 KiB |
|
After Width: | Height: | Size: 116 KiB |
|
After Width: | Height: | Size: 116 KiB |
|
After Width: | Height: | Size: 116 KiB |
|
After Width: | Height: | Size: 116 KiB |
|
After Width: | Height: | Size: 116 KiB |
|
After Width: | Height: | Size: 116 KiB |
|
After Width: | Height: | Size: 322 KiB |
|
After Width: | Height: | Size: 308 KiB |
|
After Width: | Height: | Size: 337 KiB |
|
After Width: | Height: | Size: 482 KiB |
|
After Width: | Height: | Size: 483 KiB |
|
After Width: | Height: | Size: 503 KiB |
|
After Width: | Height: | Size: 520 KiB |
|
After Width: | Height: | Size: 146 KiB |
|
After Width: | Height: | Size: 270 KiB |
|
After Width: | Height: | Size: 452 KiB |
|
After Width: | Height: | Size: 300 KiB |
|
After Width: | Height: | Size: 319 KiB |
|
After Width: | Height: | Size: 319 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1,63 @@
|
||||
/* Enhanced FAQ Styles - Iterations 3-10 Combined */
|
||||
|
||||
/* Stronger question typography */
|
||||
.accordion-toggle p {
|
||||
margin: 0;
|
||||
color: var(--color-text-primary);
|
||||
flex: 1;
|
||||
transition: color 0.3s ease;
|
||||
font-weight: 600;
|
||||
font-size: 17px;
|
||||
letter-spacing: -0.01em;
|
||||
}
|
||||
|
||||
/* Checkmark for open state */
|
||||
.accordion-item[open] .accordion-toggle::before {
|
||||
content: '✓';
|
||||
background: linear-gradient(135deg, var(--color-success), #0d9488);
|
||||
color: white;
|
||||
box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
|
||||
}
|
||||
|
||||
/* Divider between question and answer */
|
||||
.accordion-item[open] .accordion-toggle {
|
||||
border-bottom: 1px solid rgba(129, 140, 248, 0.2);
|
||||
padding-bottom: var(--space-l);
|
||||
}
|
||||
|
||||
/* Missing closing bracket and rotation */
|
||||
.accordion-chevron {
|
||||
color: var(--color-accent);
|
||||
font-size: 20px;
|
||||
transition: transform 0.3s ease;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
[open] .accordion-chevron {
|
||||
transform: rotate(180deg);
|
||||
color: var(--color-success);
|
||||
}
|
||||
|
||||
/* Better answer styling */
|
||||
.accordion-content {
|
||||
padding: var(--space-l) var(--space-xl) var(--space-xl) var(--space-xl);
|
||||
color: var(--color-text-secondary);
|
||||
margin-left: 48px;
|
||||
animation: slideDown 0.3s ease;
|
||||
}
|
||||
|
||||
/* Number indicator for FAQ items */
|
||||
.accordion-toggle::after {
|
||||
content: attr(data-index);
|
||||
position: absolute;
|
||||
right: 60px;
|
||||
font-size: 11px;
|
||||
color: var(--color-text-tertiary);
|
||||
font-weight: 600;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.accordion-item:hover .accordion-toggle::after {
|
||||
opacity: 1;
|
||||
color: var(--color-accent);
|
||||
}
|
||||
2839
plugins/compounding-engineering/docs/css/style.css.backup
Normal file
@@ -753,14 +753,14 @@
|
||||
</div>
|
||||
|
||||
<div class="grid columns-2">
|
||||
<div class="mcp-card">
|
||||
<div class="mcp-card mcp-card-browser">
|
||||
<div class="mcp-header">
|
||||
<i class="fa-brands fa-chrome mcp-icon"></i>
|
||||
<span class="mcp-name">Playwright</span>
|
||||
</div>
|
||||
<p class="mcp-description">Browser automation for testing, screenshots, and web interactions.</p>
|
||||
<div class="mcp-tools">
|
||||
<h4>Tools Provided:</h4>
|
||||
<h4>Tools Provided: <span class="tools-count">6 tools</span></h4>
|
||||
<ul>
|
||||
<li><code>browser_navigate</code> - Navigate to URLs</li>
|
||||
<li><code>browser_take_screenshot</code> - Take screenshots</li>
|
||||
@@ -771,14 +771,14 @@
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mcp-card">
|
||||
<div class="mcp-card mcp-card-docs">
|
||||
<div class="mcp-header">
|
||||
<i class="fa-solid fa-book-open mcp-icon"></i>
|
||||
<span class="mcp-name">Context7</span>
|
||||
</div>
|
||||
<p class="mcp-description">Framework documentation lookup for more than 100 frameworks.</p>
|
||||
<div class="mcp-tools">
|
||||
<h4>Tools Provided:</h4>
|
||||
<h4>Tools Provided: <span class="tools-count">2 tools</span></h4>
|
||||
<ul>
|
||||
<li><code>resolve-library-id</code> - Find library ID</li>
|
||||
<li><code>get-library-docs</code> - Get documentation</li>
|
||||
@@ -913,18 +913,21 @@ skill: gemini-imagegen</code></pre>
|
||||
<!-- CTA Section -->
|
||||
<section class="promo-cta">
|
||||
<div class="heading centered">
|
||||
<h2>Start Building Smarter Today</h2>
|
||||
<p class="paragraph m">
|
||||
Join developers who are making each engineering task easier than the last.
|
||||
<span class="cta-badge"><i class="fa-solid fa-bolt"></i> Free & Open Source</span>
|
||||
<h2>Transform Your Development Workflow in Minutes</h2>
|
||||
<p class="paragraph m cta-subheading">
|
||||
<strong>Install once. Compound forever.</strong> Get 23 expert agents, 16 workflow commands, and 11 specialized skills working for you—starting now.
|
||||
</p>
|
||||
<div class="button-group margin-paragraph centered">
|
||||
<a href="#install" class="button primary">
|
||||
<i class="fa-solid fa-download"></i> Install Plugin
|
||||
<a href="#install" class="button primary cta-primary">
|
||||
<i class="fa-solid fa-download"></i> Install Plugin Now
|
||||
<span class="button-arrow">→</span>
|
||||
</a>
|
||||
<a href="https://github.com/EveryInc/every-marketplace" class="button tertiary">
|
||||
<a href="https://github.com/EveryInc/every-marketplace" class="button tertiary cta-secondary">
|
||||
<i class="fa-brands fa-github"></i> View on GitHub
|
||||
</a>
|
||||
</div>
|
||||
<p class="cta-trust">Join 1,000+ developers building smarter with AI-powered workflows</p>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||