Update style.css
Browse files
style.css
CHANGED
|
@@ -1,28 +1,60 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
}
|
| 5 |
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
}
|
| 10 |
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
margin-top: 5px;
|
| 16 |
}
|
|
|
|
|
|
|
|
|
|
| 17 |
|
| 18 |
-
.
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
|
|
|
|
|
|
|
|
|
| 24 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
|
| 26 |
-
|
| 27 |
-
|
|
|
|
| 28 |
}
|
|
|
|
|
|
|
|
|
| 1 |
+
:root {
|
| 2 |
+
--bg: #0b0c10;
|
| 3 |
+
--panel: #13151a;
|
| 4 |
+
--text: #e7e9ee;
|
| 5 |
+
--muted: #a5adba;
|
| 6 |
+
--accent: #7c5cff;
|
| 7 |
+
--ok: #36c76f;
|
| 8 |
+
--warn: #ffb020;
|
| 9 |
}
|
| 10 |
|
| 11 |
+
* { box-sizing: border-box; }
|
| 12 |
+
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif; }
|
| 13 |
+
|
| 14 |
+
header { padding: 24px; border-bottom: 1px solid #1f232b; }
|
| 15 |
+
h1 { margin: 0 0 6px; font-size: 20px; }
|
| 16 |
+
.sub { margin: 0; color: var(--muted); }
|
| 17 |
+
|
| 18 |
+
.panel { padding: 16px 24px; display: grid; gap: 12px; }
|
| 19 |
+
.controls { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
|
| 20 |
+
|
| 21 |
+
label { font-size: 13px; color: var(--muted); display: grid; gap: 6px; margin-right: 8px; }
|
| 22 |
+
select { background: var(--panel); color: var(--text); border: 1px solid #2a2f3a; padding: 6px 8px; border-radius: 8px; }
|
| 23 |
+
|
| 24 |
+
textarea {
|
| 25 |
+
width: 100%; resize: vertical; padding: 12px; border-radius: 12px;
|
| 26 |
+
border: 1px solid #2a2f3a; background: var(--panel); color: var(--text);
|
| 27 |
}
|
| 28 |
|
| 29 |
+
.actions { display: flex; align-items: center; gap: 10px; }
|
| 30 |
+
button {
|
| 31 |
+
appearance: none; border: none; border-radius: 10px; padding: 10px 14px;
|
| 32 |
+
background: var(--accent); color: white; font-weight: 600; cursor: pointer;
|
|
|
|
| 33 |
}
|
| 34 |
+
button[disabled] { opacity: 0.6; cursor: progress; }
|
| 35 |
+
|
| 36 |
+
#status { color: var(--muted); font-size: 13px; }
|
| 37 |
|
| 38 |
+
.results { padding: 0 24px 24px; }
|
| 39 |
+
.results h2 { margin-top: 8px; }
|
| 40 |
+
#bars { display: grid; gap: 10px; }
|
| 41 |
+
|
| 42 |
+
.bar {
|
| 43 |
+
background: #1b1f27; border: 1px solid #2a2f3a; border-radius: 10px; padding: 8px 10px;
|
| 44 |
+
}
|
| 45 |
+
.bar-line {
|
| 46 |
+
height: 10px; border-radius: 6px; background: #232938; overflow: hidden; margin-top: 6px;
|
| 47 |
}
|
| 48 |
+
.bar-fill {
|
| 49 |
+
height: 100%; width: 0%;
|
| 50 |
+
background: linear-gradient(90deg, var(--ok), var(--accent));
|
| 51 |
+
transition: width 300ms ease;
|
| 52 |
+
}
|
| 53 |
+
.bar-label { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); }
|
| 54 |
|
| 55 |
+
pre#raw {
|
| 56 |
+
overflow: auto; background: #0f1117; border-radius: 10px; padding: 12px; border: 1px solid #2a2f3a;
|
| 57 |
+
color: #c7c9d1; font-size: 12px;
|
| 58 |
}
|
| 59 |
+
|
| 60 |
+
.disclaimer { padding: 16px 24px 32px; color: var(--muted); font-size: 13px; }
|