Spaces:
Sleeping
Sleeping
Create styles.css
Browse files- static/styles.css +18 -0
static/styles.css
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
:root { --bg:#f7f7fb; --fg:#222; --muted:#667; --card:#fff; --line:#e6e6ef; --pri:#3b82f6; }
|
| 2 |
+
*{ box-sizing:border-box; }
|
| 3 |
+
body{ margin:0; font:16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif; color:var(--fg); background:var(--bg); }
|
| 4 |
+
header{ padding:24px; border-bottom:1px solid var(--line); background:#fff; position:sticky; top:0; }
|
| 5 |
+
h1{ margin:0; font-size:22px; }
|
| 6 |
+
.sub{ color:var(--muted); font-size:13px; }
|
| 7 |
+
main{ max-width:980px; margin:24px auto; padding:0 16px; }
|
| 8 |
+
.card{ background:var(--card); border:1px solid var(--line); border-radius:12px; padding:16px; margin:16px 0; box-shadow:0 1px 1px rgba(0,0,0,.02); }
|
| 9 |
+
h2{ margin:0 0 12px; font-size:18px; }
|
| 10 |
+
label{ display:block; margin:8px 0; font-weight:600; }
|
| 11 |
+
input, textarea{ width:100%; padding:10px 12px; border:1px solid var(--line); border-radius:8px; background:#fff; font:inherit; }
|
| 12 |
+
.grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap:12px; }
|
| 13 |
+
button{ appearance:none; border:none; background:var(--pri); color:#fff; padding:10px 16px; border-radius:10px; cursor:pointer; font-weight:700; margin-top:8px; }
|
| 14 |
+
button:hover{ opacity:.95; }
|
| 15 |
+
.muted{ color:var(--muted); margin-top:8px; }
|
| 16 |
+
pre{ background:#0b1022; color:#b7c1ff; padding:12px; border-radius:10px; overflow:auto; font-size:13px; }
|
| 17 |
+
.downloads a{ display:inline-block; margin:8px 8px 0 0; text-decoration:none; color:var(--pri); font-weight:700; }
|
| 18 |
+
footer{ text-align:center; color:var(--muted); padding:24px 12px; }
|