File size: 1,952 Bytes
e56f770
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
:root {
  color-scheme: dark;
  --bg: #0b1020;
  --panel: #121936;
  --text: #ebf0ff;
  --accent: #6ea8fe;
  --border: #2f3f7a;
}

* {
  box-sizing: border-box;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", sans-serif;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #162147, var(--bg));
  color: var(--text);
}

.topbar,
footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 1rem;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 1rem;
}

.panel {
  background: color-mix(in srgb, var(--panel) 90%, black);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
}

.settings label {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

input,
select,
textarea,
button {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #0d1530;
  color: var(--text);
  padding: 0.65rem;
}

button {
  background: linear-gradient(90deg, #3857dc, #5b8cff);
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tab {
  opacity: 0.65;
}

.tab.active {
  opacity: 1;
  outline: 2px solid var(--accent);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.output {
  min-height: 150px;
  white-space: pre-wrap;
  background: #070d1f;
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid #1f2d63;
}

.hint {
  font-size: 0.85rem;
  opacity: 0.8;
}

@media (max-width: 980px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


.inline-control {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.inline-control input[type="checkbox"] {
  width: auto;
}