HarbourSOFT commited on
Commit
293982d
·
verified ·
1 Parent(s): 2187201

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +51 -19
style.css CHANGED
@@ -1,28 +1,60 @@
1
- body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
 
 
 
 
 
4
  }
5
 
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  }
10
 
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
  }
 
 
 
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
 
 
 
24
  }
 
 
 
 
 
 
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
 
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; }