47 lines
860 B
CSS
47 lines
860 B
CSS
/* static/style.css */
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
background: #f9fafb;
|
|
margin: 0;
|
|
padding: 2rem;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.container {
|
|
background: white;
|
|
padding: 2.5rem;
|
|
border-radius: 16px;
|
|
box-shadow: 0 10px 25px rgba(0,0,0,0.08);
|
|
max-width: 700px;
|
|
width: 100%;
|
|
}
|
|
h1 {
|
|
color: #1e40af;
|
|
text-align: center;
|
|
margin-top: 0;
|
|
}
|
|
h2 {
|
|
color: #374151;
|
|
border-bottom: 1px solid #e5e7eb;
|
|
padding-bottom: 0.5rem;
|
|
margin-top: 2rem;
|
|
}
|
|
.db-status {
|
|
background: #f0f9ff;
|
|
padding: 1.2rem;
|
|
border-radius: 10px;
|
|
margin: 1.5rem 0;
|
|
border-left: 4px solid #3b82f6;
|
|
}
|
|
.info {
|
|
margin-top: 2rem;
|
|
text-align: center;
|
|
color: #6b7280;
|
|
}
|
|
code {
|
|
background: #f3f4f6;
|
|
padding: 0.2rem 0.4rem;
|
|
border-radius: 4px;
|
|
font-family: monospace;
|
|
font-size: 0.9em;
|
|
} |