Skip to content

Commit 3ace8a7

Browse files
author
lisong
committed
feat: first commit
0 parents  commit 3ace8a7

6 files changed

Lines changed: 1225 additions & 0 deletions

File tree

.gitignore

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
lerna-debug.log*
8+
yarn.lock
9+
10+
# Diagnostic reports (https://nodejs.org/api/report.html)
11+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
12+
13+
# Runtime data
14+
pids
15+
*.pid
16+
*.seed
17+
*.pid.lock
18+
.DS_Store
19+
20+
# Directory for instrumented libs generated by jscoverage/JSCover
21+
lib-cov
22+
23+
# Coverage directory used by tools like istanbul
24+
coverage
25+
*.lcov
26+
27+
# nyc test coverage
28+
.nyc_output
29+
30+
# node-waf configuration
31+
.lock-wscript
32+
33+
# Compiled binary addons (https://nodejs.org/api/addons.html)
34+
build/Release
35+
36+
# Dependency directories
37+
node_modules/
38+
jspm_packages/
39+
40+
# TypeScript v1 declaration files
41+
typings/
42+
43+
# TypeScript cache
44+
*.tsbuildinfo
45+
46+
# Optional npm cache directory
47+
.npm
48+
49+
# Optional eslint cache
50+
.eslintcache
51+
52+
# Optional REPL history
53+
.node_repl_history
54+
55+
# Output of 'npm pack'
56+
*.tgz
57+
58+
# Yarn Integrity file
59+
.yarn-integrity
60+
61+
# dotenv environment variables file
62+
.env
63+
.env.test
64+
65+
# parcel-bundler cache (https://parceljs.org/)
66+
.cache
67+
68+
# next.js build output
69+
.next
70+
71+
# nuxt.js build output
72+
.nuxt
73+
74+
# vuepress build output
75+
.vuepress/dist
76+
77+
# Serverless directories
78+
.serverless/
79+
80+
# FuseBox cache
81+
.fusebox/
82+
83+
# DynamoDB Local files
84+
.dynamodb/
85+
86+
# Webpack
87+
.webpack/
88+
89+
# Vite
90+
.vite/

css/font/iconfont.css

Lines changed: 257 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,257 @@
1+
@font-face {
2+
font-family: "icon"; /* Project id 4620628 */
3+
src: url('iconfont.woff2?t=1762255267908') format('woff2');
4+
}
5+
6+
.icon {
7+
font-family: "icon" !important;
8+
font-size: 16px;
9+
font-style: normal;
10+
-webkit-font-smoothing: antialiased;
11+
-moz-osx-font-smoothing: grayscale;
12+
}
13+
14+
.icon-websocket:before {
15+
content: "\e735";
16+
}
17+
18+
.icon-proxy:before {
19+
content: "\e864";
20+
}
21+
22+
.icon-net:before {
23+
content: "\e6b2";
24+
}
25+
26+
.icon-windows:before {
27+
content: "\e882";
28+
}
29+
30+
.icon-github:before {
31+
content: "\e85a";
32+
}
33+
34+
.icon-intel:before {
35+
content: "\e610";
36+
}
37+
38+
.icon-macos:before {
39+
content: "\e60b";
40+
}
41+
42+
.icon-favorite:before {
43+
content: "\e894";
44+
}
45+
46+
.icon-setting:before {
47+
content: "\e6f0";
48+
}
49+
50+
.icon-diff:before {
51+
content: "\eb66";
52+
}
53+
54+
.icon-map:before {
55+
content: "\e602";
56+
}
57+
58+
.icon-history:before {
59+
content: "\e881";
60+
}
61+
62+
.icon-more:before {
63+
content: "\e605";
64+
}
65+
66+
.icon-arrow-left:before {
67+
content: "\e6d6";
68+
}
69+
70+
.icon-arrow-right:before {
71+
content: "\e6a8";
72+
}
73+
74+
.icon-ip:before {
75+
content: "\e64f";
76+
}
77+
78+
.icon-domain:before {
79+
content: "\e61c";
80+
}
81+
82+
.icon-top-bottom:before {
83+
content: "\e689";
84+
}
85+
86+
.icon-left-right:before {
87+
content: "\e68c";
88+
}
89+
90+
.icon-bottom-bar:before {
91+
content: "\e768";
92+
}
93+
94+
.icon-right-bar:before {
95+
content: "\e601";
96+
}
97+
98+
.icon-left-bar:before {
99+
content: "\ec6d";
100+
}
101+
102+
.icon-file:before {
103+
content: "\e739";
104+
}
105+
106+
.icon-close:before {
107+
content: "\e650";
108+
}
109+
110+
.icon-minimize:before {
111+
content: "\e65b";
112+
}
113+
114+
.icon-maximize:before {
115+
content: "\e65d";
116+
}
117+
118+
.icon-unmaximize:before {
119+
content: "\e692";
120+
}
121+
122+
.icon-loading:before {
123+
content: "\e61f";
124+
}
125+
126+
.icon-empty:before {
127+
content: "\e622";
128+
}
129+
130+
.icon-send:before {
131+
content: "\e62d";
132+
}
133+
134+
.icon-ssl:before {
135+
content: "\e6f8";
136+
}
137+
138+
.icon-down-circle:before {
139+
content: "\e839";
140+
}
141+
142+
.icon-left-circle:before {
143+
content: "\ec69";
144+
}
145+
146+
.icon-right-circle:before {
147+
content: "\ec6a";
148+
}
149+
150+
.icon-up-circle:before {
151+
content: "\ec6b";
152+
}
153+
154+
.icon-right:before {
155+
content: "\e877";
156+
}
157+
158+
.icon-down:before {
159+
content: "\e98d";
160+
}
161+
162+
.icon-up:before {
163+
content: "\e98e";
164+
}
165+
166+
.icon-left:before {
167+
content: "\e98f";
168+
}
169+
170+
.icon-script:before {
171+
content: "\e60e";
172+
}
173+
174+
.icon-gateway:before {
175+
content: "\e66a";
176+
}
177+
178+
.icon-plus:before {
179+
content: "\e8fe";
180+
}
181+
182+
.icon-pin:before {
183+
content: "\e863";
184+
}
185+
186+
.icon-download:before {
187+
content: "\e649";
188+
}
189+
190+
.icon-icase:before {
191+
content: "\e616";
192+
}
193+
194+
.icon-regex:before {
195+
content: "\e603";
196+
}
197+
198+
.icon-search:before {
199+
content: "\e600";
200+
}
201+
202+
.icon-expand-right:before {
203+
content: "\ec6c";
204+
}
205+
206+
.icon-loadmore:before {
207+
content: "\e853";
208+
}
209+
210+
.icon-empty1:before {
211+
content: "\e817";
212+
}
213+
214+
.icon-zhongduan:before {
215+
content: "\e62b";
216+
}
217+
218+
.icon-import:before {
219+
content: "\e614";
220+
}
221+
222+
.icon-export:before {
223+
content: "\e98c";
224+
}
225+
226+
.icon-network:before {
227+
content: "\e648";
228+
}
229+
230+
.icon-delete:before {
231+
content: "\e680";
232+
}
233+
234+
.icon-pen-1:before {
235+
content: "\e824";
236+
}
237+
238+
.icon-copy:before {
239+
content: "\e6f5";
240+
}
241+
242+
.icon-warn:before {
243+
content: "\e670";
244+
}
245+
246+
.icon-pen:before {
247+
content: "\e65a";
248+
}
249+
250+
.icon-bug:before {
251+
content: "\e8e8";
252+
}
253+
254+
.icon-mirror:before {
255+
content: "\e76a";
256+
}
257+

css/font/iconfont.woff2

8.2 KB
Binary file not shown.

favicon.ico

31.4 KB
Binary file not shown.

img/banner.png

543 KB
Loading

0 commit comments

Comments
 (0)