slideshare/public/themes/default/layouts/2-content-blocks.html
Michael Mainguy 2a905d50e0 Enhance default theme with proper content centering and 2-content-blocks layout
- Update default theme CSS for proper content centering and aspect ratio integration
- Add text-align: center to base slide styling for consistent centering
- Implement specific alignment for title, subtitle, and text slots
- Add aspect ratio specific adjustments (different padding and max-width per ratio)
- Create new 2-content-blocks layout with side-by-side equal spacing
- Use CSS Grid for 50/50 split with proper gap and visual separation
- Add responsive design for mobile devices (stacks vertically)
- Include subtle styling to distinguish content blocks
- Improve typography scaling for two-column layout

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-20 17:15:03 -05:00

13 lines
537 B
HTML

<div class="slide layout-2-content-blocks">
<h1 class="slot title-slot" data-slot="title" data-placeholder="Slide Title" data-required>
{{title}}
</h1>
<div class="content-blocks-container">
<div class="slot content-slot" data-slot="content1" data-placeholder="First content block" data-required>
{{content1}}
</div>
<div class="slot content-slot" data-slot="content2" data-placeholder="Second content block" data-required>
{{content2}}
</div>
</div>
</div>