Skip to content
This repository was archived by the owner on Jul 10, 2023. It is now read-only.

Commit 516a606

Browse files
committed
first commit
0 parents  commit 516a606

27 files changed

+764
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
package-lock.json
3+
dist
4+
yarn.lock

Css/font/Vazirmatn-Bold.ttf

164 KB
Binary file not shown.

Css/font/Vazirmatn-ExtraLight.ttf

164 KB
Binary file not shown.

Css/font/Vazirmatn-Medium.ttf

164 KB
Binary file not shown.

Css/font/Vazirmatn-Regular.ttf

161 KB
Binary file not shown.

Css/style.css

+320
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,320 @@
1+
@font-face {
2+
font-family: "Vazirmatn-Bold";
3+
src : url(font/Vazirmatn-Bold.ttf) format("truetype");
4+
}
5+
6+
@font-face {
7+
font-family: "Vazirmatn-ExtraLight";
8+
src : url(font/Vazirmatn-ExtraLight.ttf) format("truetype");
9+
}
10+
11+
@font-face {
12+
font-family: "Vazirmatn-Medium";
13+
src : url(font/Vazirmatn-Medium.ttf) format("truetype");
14+
}
15+
16+
@font-face {
17+
font-family: "Vazirmatn-Regular";
18+
src : url(font/Vazirmatn-Regular.ttf) format("truetype");
19+
}
20+
21+
html,
22+
body {
23+
background-color : #fefefe;
24+
margin : 0px 0px 0px 0px;
25+
direction : rtl;
26+
user-select : none;
27+
-khtml-user-select : none;
28+
-o-user-select : none;
29+
-moz-user-select : none;
30+
-webkit-user-select: none;
31+
}
32+
33+
#titlebar {
34+
max-width : 100%;
35+
height : 23px;
36+
-webkit-app-region: drag;
37+
}
38+
39+
.icon {
40+
41+
display : block;
42+
margin-left : auto;
43+
margin-right: auto;
44+
width : 15px;
45+
padding : 4px;
46+
}
47+
48+
#window-controls {
49+
display : flex;
50+
float : left;
51+
word-spacing: 5px;
52+
}
53+
54+
#min-button {
55+
background-image : linear-gradient(135deg, #c9def7 10%, #a6bfcb 100%);
56+
width : 40px;
57+
-webkit-app-region : no-drag;
58+
transition : 0.5s ease-in-out;
59+
border-bottom-right-radius: 10px;
60+
border-bottom-left-radius : 10px;
61+
height: 25px;
62+
}
63+
64+
#min-button:hover {
65+
transition : 0.5s ease-in-out;
66+
background-image: linear-gradient(135deg, #c5c5c5 10%, #e8ecee 100%);
67+
}
68+
69+
#close-button {
70+
background-image : linear-gradient(135deg, #f79090 10%, #cc3232 100%);
71+
width : 50px;
72+
-webkit-app-region : no-drag;
73+
transition : 0.5s ease-in-out;
74+
border-bottom-right-radius: 15px;
75+
padding : 3px;
76+
}
77+
78+
#close-button:hover {
79+
transition : 0.5s ease-in-out;
80+
background-image: linear-gradient(135deg, #ee7a7a 10%, #be2828 100%);
81+
}
82+
83+
#sitemap{
84+
margin-top: 60px;
85+
}
86+
87+
88+
#title_app{
89+
font-family: 'Vazirmatn-Regular' ;
90+
text-align: center;
91+
margin-bottom: 0px;
92+
color: #7ba5b9;
93+
}
94+
95+
#title_app_p{
96+
font-family: 'Vazirmatn-ExtraLight' ;
97+
text-align: center;
98+
margin-top: 2px;
99+
color: #979797
100+
}
101+
102+
103+
#input_sitemap {
104+
105+
display : block;
106+
width : 240px;
107+
margin-left : auto;
108+
margin-right : auto;
109+
margin-top : 30px;
110+
padding : 10px;
111+
direction : ltr;
112+
font-family : 'Vazirmatn-ExtraLight';
113+
border-radius: 15px;
114+
border : 0.5px;
115+
border-style : solid;
116+
border-color : #c5c5c5;
117+
box-shadow : 0px 0px 20px 0px rgba(0, 0, 0, 0.048);
118+
119+
}
120+
121+
#but_sitemap {
122+
123+
display : block;
124+
width : 100px;
125+
margin-left : auto;
126+
margin-right : auto;
127+
margin-top : 20px;
128+
padding : 10px;
129+
direction : ltr;
130+
font-family : 'Vazirmatn-ExtraLight';
131+
font-size : 15px;
132+
border-radius : 15px;
133+
border : 0.5px;
134+
border-style : solid;
135+
border-color : #c5c5c5;
136+
background-color: #ebebeb;
137+
box-shadow : 0px 0px 20px 0px rgba(0, 0, 0, 0.048);
138+
color : #9b9b9b;
139+
transition : 0.5s ease-in-out;
140+
141+
}
142+
143+
#but_sitemap:hover {
144+
145+
width : 120px;
146+
padding : 14px;
147+
background-color: #e0e0e0;
148+
transition : 0.5s ease-in-out;
149+
150+
}
151+
152+
#error {
153+
154+
margin-left : auto;
155+
margin-right : auto;
156+
font-family : 'Vazirmatn-ExtraLight';
157+
width : 80%;
158+
font-size : 12px;
159+
border-radius : 15px;
160+
border : 0.5px;
161+
border-style : solid;
162+
border-color : #c5c5c5;
163+
background-color: #fff2d5;
164+
text-align : center;
165+
color : #2a2a2a;
166+
167+
}
168+
169+
#sitemap_load{
170+
171+
margin-left: 10px;
172+
margin-right: 10px;
173+
margin-top: 100px;
174+
padding: 10px;
175+
white-space: normal;
176+
}
177+
178+
#sitemap_title_top{
179+
180+
font-family: 'Vazirmatn-Regular' ;
181+
text-align: center;
182+
color: #7ba5b9;
183+
word-break: break-all;
184+
}
185+
186+
#urls{
187+
188+
font-family: 'Vazirmatn-ExtraLight' ;
189+
text-align: center;
190+
color: #939393;
191+
margin-top: 30px;
192+
}
193+
#urls SPan{
194+
195+
font-family: 'Vazirmatn-ExtraLight' ;
196+
text-align: center;
197+
color: #d35b5b;
198+
}
199+
200+
#urls2{
201+
202+
font-family: 'Vazirmatn-ExtraLight' ;
203+
text-align: center;
204+
color: #939393;
205+
margin-top: 80px;
206+
}
207+
#urls2 SPan{
208+
209+
font-family: 'Vazirmatn-ExtraLight' ;
210+
text-align: center;
211+
color: #d35b5b;
212+
}
213+
214+
#sitemap_download_a{
215+
216+
display : block;
217+
width : 100px;
218+
margin-left : auto;
219+
margin-right : auto;
220+
margin-top : 40px;
221+
padding : 10px;
222+
direction : ltr;
223+
font-family : 'Vazirmatn-ExtraLight';
224+
font-size : 15px;
225+
border-radius : 15px;
226+
border : 0.5px;
227+
border-style : solid;
228+
border-color : #c5c5c5;
229+
background-color: #ebebeb;
230+
box-shadow : 0px 0px 20px 0px rgba(0, 0, 0, 0.048);
231+
color : #9b9b9b;
232+
transition : 0.5s ease-in-out;
233+
text-align: center;
234+
text-decoration : none;
235+
}
236+
237+
#sitemap_download_a:hover {
238+
239+
width : 120px;
240+
padding : 14px;
241+
background-color: #e0e0e0;
242+
transition : 0.5s ease-in-out;
243+
244+
}
245+
246+
#back{
247+
248+
display : block;
249+
width : 100px;
250+
margin-left : auto;
251+
margin-right : auto;
252+
margin-top : 20px;
253+
padding : 10px;
254+
direction : ltr;
255+
font-family : 'Vazirmatn-ExtraLight';
256+
font-size : 15px;
257+
border-radius : 15px;
258+
border : 0.5px;
259+
border-style : solid;
260+
border-color : #c5c5c5;
261+
background-color: #ebebeb;
262+
box-shadow : 0px 0px 20px 0px rgba(0, 0, 0, 0.048);
263+
color : #9b9b9b;
264+
transition : 0.5s ease-in-out;
265+
text-align: center;
266+
}
267+
268+
#back:hover {
269+
270+
width : 120px;
271+
padding : 14px;
272+
background-color: #e0e0e0;
273+
transition : 0.5s ease-in-out;
274+
275+
}
276+
277+
#download_TEXT{
278+
279+
margin-top: 40px;
280+
font-family: 'Vazirmatn-Regular' ;
281+
text-align: center;
282+
color: #7ba1b9;
283+
margin-top: 30px;
284+
}
285+
286+
287+
288+
.loader {
289+
border: 5px solid #f3f3f3;
290+
border-radius: 50%;
291+
border-top: 5px solid #83adc9;
292+
width: 20px;
293+
height: 20px;
294+
-webkit-animation: spin 2s linear infinite; /* Safari */
295+
animation: spin 2s linear infinite;
296+
margin-left: auto;
297+
margin-right: auto;
298+
margin-top: 30px;
299+
}
300+
301+
/* Safari */
302+
@-webkit-keyframes spin {
303+
0% { -webkit-transform: rotate(0deg); }
304+
100% { -webkit-transform: rotate(360deg); }
305+
}
306+
307+
@keyframes spin {
308+
0% { transform: rotate(0deg); }
309+
100% { transform: rotate(360deg); }
310+
}
311+
312+
#Developed {
313+
314+
font-family: 'Vazirmatn-ExtraLight';
315+
font-size : 12px;
316+
text-align : center;
317+
margin-top : 28px;
318+
color : #5b5b5b;
319+
320+
}

Github/1.png

112 KB
Loading

Github/2.png

52.3 KB
Loading

Github/3.png

84.7 KB
Loading

Github/4.png

23.4 KB
Loading

Github/5.png

13.9 KB
Loading

Github/6.png

16.8 KB
Loading

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 rn0x
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

build/LICENSE.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 rn0x
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

build/icon.ico

110 KB
Binary file not shown.

build/icons/256x256.png

13.5 KB
Loading

build/icons/icon.icns

34.4 KB
Binary file not shown.

build/icons/icon.png

13.5 KB
Loading

build/installerHeader.bmp

25.2 KB
Binary file not shown.

build/installerSidebar.bmp

151 KB
Binary file not shown.

icon/close.png

4.28 KB
Loading

icon/minimize.png

2.31 KB
Loading

0 commit comments

Comments
 (0)