Spaces:
Sleeping
Sleeping
File size: 1,270 Bytes
c8be292 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | :root {
--bg: #0f1115;
--panel: #171a21;
--text: #f5f7fb;
--muted: #a7b0c0;
--accent: #59f2a8;
--accent-2: #5ac8ff;
--border: #2a303c;
}
* { box-sizing: border-box; }
body {
margin: 0;
font-family: "Space Grotesk", "Segoe UI", sans-serif;
background: radial-gradient(1200px 800px at 10% 10%, #1a2030, #0f1115);
color: var(--text);
}
.wrap {
max-width: 900px;
margin: 0 auto;
padding: 32px 20px 48px;
}
header { margin-bottom: 16px; }
h1 { margin: 0 0 8px 0; font-size: 28px; }
.lead { margin: 0; color: var(--muted); }
textarea {
width: 100%;
min-height: 200px;
padding: 12px;
border: 1px solid var(--border);
background: var(--panel);
color: var(--text);
border-radius: 10px;
resize: vertical;
font-size: 14px;
line-height: 1.4;
}
.actions { display: flex; gap: 12px; margin-top: 12px; align-items: center; }
button {
background: linear-gradient(120deg, var(--accent), var(--accent-2));
border: none;
color: #0b0f16;
font-weight: 700;
padding: 10px 16px;
border-radius: 10px;
cursor: pointer;
}
.panel {
margin-top: 16px;
padding: 16px;
background: var(--panel);
border: 1px solid var(--border);
border-radius: 12px;
}
.score { font-size: 20px; font-weight: 700; }
.muted { color: var(--muted); }
|