Spaces:
Sleeping
Sleeping
Create static/style.css
Browse files- static/style.css +10 -0
static/style.css
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* Minimal style for English Helper demo */
|
| 2 |
+
body { font-family: Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; background:#f8fafc; color:#0f172a; }
|
| 3 |
+
.container { max-width:1100px; margin:0 auto; padding:1rem; }
|
| 4 |
+
.site-nav { background:#fff; border-bottom:1px solid #e5e7eb; }
|
| 5 |
+
.site-nav a { margin-right:1rem; color:#374151; text-decoration:none; font-weight:600; }
|
| 6 |
+
.site-nav a:hover { color:#1d4ed8; }
|
| 7 |
+
.bg-blue { background:#3b82f6; color:#fff; }
|
| 8 |
+
.button { background:#3b82f6; color:#fff; padding:0.5rem 1rem; border-radius:6px; }
|
| 9 |
+
.card { background:#fff; border:1px solid #e5e7eb; padding:1rem; border-radius:8px; }
|
| 10 |
+
```
|