35 lines
847 B
HTML
35 lines
847 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>
|