mgbam commited on
Commit
265111f
·
verified ·
1 Parent(s): c7bfe30

Delete static/index.html

Browse files
Files changed (1) hide show
  1. static/index.html +0 -236
static/index.html DELETED
@@ -1,236 +0,0 @@
1
- /* static/style.css */
2
- /* ---------------------------------------------------------
3
- AnyCoder AI – global theme and responsive layout
4
- ---------------------------------------------------------- */
5
-
6
- :root {
7
- --bg: #0d1117;
8
- --bg-secondary: #161b22;
9
- --border: #30363d;
10
- --text: #c9d1d9;
11
- --text-muted: #8b949e;
12
- --accent: #58a6ff;
13
- --accent-hover: #79c0ff;
14
- --danger: #f85149;
15
- --success: #56d364;
16
- --font-mono: "SFMono-Regular", Consolas, "Liberation Mono",
17
- Menlo, monospace;
18
- --radius: 8px;
19
- --transition: 0.2s ease;
20
- }
21
-
22
- * {
23
- box-sizing: border-box;
24
- margin: 0;
25
- padding: 0;
26
- }
27
-
28
- body {
29
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
30
- Helvetica, Arial, sans-serif;
31
- background: var(--bg);
32
- color: var(--text);
33
- line-height: 1.6;
34
- padding: 1rem;
35
- }
36
-
37
- /* ------------------------------------------------------------------
38
- Layout
39
- ------------------------------------------------------------------- */
40
-
41
- header {
42
- text-align: center;
43
- margin-bottom: 2rem;
44
- }
45
-
46
- header h1 {
47
- font-size: 2.5rem;
48
- margin-bottom: 0.5rem;
49
- }
50
-
51
- header p {
52
- color: var(--text-muted);
53
- font-size: 1.1rem;
54
- }
55
-
56
- main {
57
- max-width: 900px;
58
- margin: 0 auto;
59
- display: grid;
60
- gap: 2rem;
61
- }
62
-
63
- section {
64
- background: var(--bg-secondary);
65
- border: 1px solid var(--border);
66
- border-radius: var(--radius);
67
- padding: 1.5rem;
68
- }
69
-
70
- h2 {
71
- font-size: 1.25rem;
72
- margin-bottom: 1rem;
73
- }
74
-
75
- /* ------------------------------------------------------------------
76
- Form controls
77
- ------------------------------------------------------------------- */
78
-
79
- label {
80
- display: block;
81
- margin-bottom: 0.5rem;
82
- font-weight: 600;
83
- }
84
-
85
- select,
86
- input[type="file"],
87
- input[type="url"],
88
- textarea {
89
- width: 100%;
90
- padding: 0.75rem;
91
- border: 1px solid var(--border);
92
- border-radius: var(--radius);
93
- background: var(--bg);
94
- color: var(--text);
95
- font-size: 1rem;
96
- transition: border-color var(--transition);
97
- }
98
-
99
- select:focus,
100
- input:focus,
101
- textarea:focus {
102
- outline: none;
103
- border-color: var(--accent);
104
- }
105
-
106
- textarea {
107
- resize: vertical;
108
- min-height: 120px;
109
- font-family: var(--font-mono);
110
- }
111
-
112
- /* ------------------------------------------------------------------
113
- Tabs
114
- ------------------------------------------------------------------- */
115
-
116
- .tabs {
117
- display: flex;
118
- gap: 0.5rem;
119
- margin-bottom: 1rem;
120
- }
121
-
122
- .tabs button {
123
- background: transparent;
124
- border: 1px solid var(--border);
125
- border-radius: var(--radius);
126
- padding: 0.5rem 1rem;
127
- color: var(--text-muted);
128
- cursor: pointer;
129
- transition: background var(--transition), color var(--transition);
130
- }
131
-
132
- .tabs button[aria-selected="true"] {
133
- background: var(--accent);
134
- color: var(--bg);
135
- border-color: var(--accent);
136
- }
137
-
138
- .tabs button:hover:not([aria-selected="true"]) {
139
- background: var(--border);
140
- color: var(--text);
141
- }
142
-
143
- /* ------------------------------------------------------------------
144
- Toggles & buttons
145
- ------------------------------------------------------------------- */
146
-
147
- .search-toggle {
148
- display: flex;
149
- align-items: center;
150
- gap: 0.5rem;
151
- margin-top: 1rem;
152
- }
153
-
154
- .actions {
155
- display: flex;
156
- gap: 1rem;
157
- justify-content: flex-end;
158
- }
159
-
160
- button {
161
- padding: 0.75rem 1.5rem;
162
- border: none;
163
- border-radius: var(--radius);
164
- font-size: 1rem;
165
- cursor: pointer;
166
- transition: background var(--transition);
167
- }
168
-
169
- #clear {
170
- background: var(--border);
171
- color: var(--text);
172
- }
173
-
174
- #clear:hover {
175
- background: var(--text-muted);
176
- }
177
-
178
- #generate {
179
- background: var(--accent);
180
- color: var(--bg);
181
- }
182
-
183
- #generate:hover {
184
- background: var(--accent-hover);
185
- }
186
-
187
- /* ------------------------------------------------------------------
188
- Output panels
189
- ------------------------------------------------------------------- */
190
-
191
- pre {
192
- background: var(--bg);
193
- border: 1px solid var(--border);
194
- border-radius: var(--radius);
195
- padding: 1rem;
196
- overflow-x: auto;
197
- font-family: var(--font-mono);
198
- font-size: 0.9rem;
199
- }
200
-
201
- iframe {
202
- width: 100%;
203
- height: 400px;
204
- border: 1px solid var(--border);
205
- border-radius: var(--radius);
206
- background: #fff;
207
- }
208
-
209
- /* ------------------------------------------------------------------
210
- Accessibility helpers
211
- ------------------------------------------------------------------- */
212
-
213
- .visually-hidden {
214
- position: absolute;
215
- width: 1px;
216
- height: 1px;
217
- overflow: hidden;
218
- clip: rect(0 0 0 0);
219
- white-space: nowrap;
220
- }
221
-
222
- /* ------------------------------------------------------------------
223
- Responsive
224
- ------------------------------------------------------------------- */
225
-
226
- @media (max-width: 600px) {
227
- body {
228
- padding: 0.5rem;
229
- }
230
- header h1 {
231
- font-size: 2rem;
232
- }
233
- .actions {
234
- flex-direction: column;
235
- }
236
- }