Files
soroban-abacus-flashcards/apps/web/test_panda_simple.html
Thomas Hallock 0809858302 feat: add web development test files and public assets
- Added test HTML files for Panda CSS and memory quiz development
- Created public directory with game assets and test files
- Includes simple layout tests and memory quiz backup files

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-14 16:59:37 -05:00

34 lines
908 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Test Panda CSS</title>
<style>
/* Inline test to see if the page styling issue is basic layout */
.test-center {
text-align: center;
padding: 20px;
max-width: 800px;
margin: 0 auto;
background: #f5f5f5;
border: 2px solid #333;
}
.test-btn {
background: #007bff;
color: white;
border: none;
padding: 12px 24px;
border-radius: 8px;
cursor: pointer;
margin: 10px;
}
</style>
</head>
<body>
<div class="test-center">
<h2>Basic Layout Test</h2>
<p>This should be centered with a grey background and border</p>
<button class="test-btn">Test Button 1</button>
<button class="test-btn">Test Button 2</button>
</div>
</body>
</html>