- New TinaCMS collection 'pages' with 15 block templates: Hero, TextBlock, TwoColumn, Features, Stats, Testimonials, Team, FAQ, CTABanner, Video, Gallery, Pricing, Timeline, Divider, ContactForm - Each page has published toggle (unpublished → 404) - Route /p/:slug renders dynamic pages from content/pages/*.json - scripts/copy-pages.mjs copies content/pages → public/pages at build - prerender.mjs extended to prerender published pages - All blocks styled with design tokens + Framer Motion animations Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
59 lines
1.1 KiB
CSS
59 lines
1.1 KiB
CSS
.block-features {
|
|
padding: 80px 24px;
|
|
}
|
|
|
|
.block-features-inner {
|
|
max-width: 1100px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.block-features-title {
|
|
font-size: 2.2rem;
|
|
font-weight: 700;
|
|
color: var(--light-grey-100);
|
|
text-align: center;
|
|
margin-bottom: 48px;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.block-features-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
|
|
gap: 24px;
|
|
}
|
|
|
|
.block-features-card {
|
|
background: rgba(7, 80, 86, 0.15);
|
|
border: 1px solid rgba(211, 221, 222, 0.1);
|
|
border-radius: 12px;
|
|
padding: 32px;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.block-features-card:hover {
|
|
background: rgba(7, 80, 86, 0.25);
|
|
border-color: rgba(211, 221, 222, 0.2);
|
|
transform: translateY(-4px);
|
|
}
|
|
|
|
.block-features-icon {
|
|
font-size: 2.5rem;
|
|
display: block;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.block-features-card-title {
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
color: var(--light-grey-100);
|
|
margin-bottom: 8px;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.block-features-card-desc {
|
|
font-size: 0.9rem;
|
|
color: var(--light-grey-100);
|
|
opacity: 0.75;
|
|
line-height: 1.6;
|
|
margin: 0;
|
|
}
|