forked from gokulapap/Reconator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathissues.html
399 lines (356 loc) · 7.01 KB
/
issues.html
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
nav{
display: flex;
height: 70px;
width: 100%;
background: #1b1b1b;
align-items: center;
justify-content: space-between;
padding: 0 50px 0 90px;
flex-wrap: wrap;
}
nav .logo{
color: #fff;
font-size: 35px;
font-weight: 600;
}
nav ul{
display: flex;
flex-wrap: wrap;
list-style: none;
}
nav ul li{
margin: 0 5px;
}
nav ul li a{
color: #f2f2f2;
text-decoration: none;
font-size: 18px;
font-weight: 500;
padding: 8px 15px;
border-radius: 5px;
letter-spacing: 1px;
transition: all 0.3s ease;
}
nav ul li a.active,
nav ul li a:hover{
color: #111;
background: #fff;
}
nav .menu-btn i{
color: #fff;
font-size: 22px;
cursor: pointer;
display: none;
}
input[type="checkbox"]{
display: none;
}
@media (max-width: 1000px){
nav{
padding: 0 40px 0 40px;
}
}
@media (max-width: 920px) {
nav .menu-btn i{
display: block;
}
#click:checked ~ .menu-btn i:before{
content: "\f00d";
}
nav ul{
position: fixed;
top: 80px;
left: -100%;
background: #111;
height: 100vh;
width: 100%;
text-align: center;
display: block;
transition: all 0.3s ease;
}
#click:checked ~ ul{
left: 0;
}
nav ul li{
width: 100%;
margin: 40px 0;
}
nav ul li a{
width: 100%;
margin-left: -100%;
display: block;
font-size: 20px;
transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
#click:checked ~ ul li a{
margin-left: 0px;
}
nav ul li a.active,
nav ul li a:hover{
background: none;
color: cyan;
}
}
.content{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
z-index: -1;
width: 100%;
padding: 0 30px;
color: #1b1b1b;
}
.content div{
font-size: 40px;
font-weight: 700;
}
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;500&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box; }
html, body {
height: 100%; }
body {
background: #282c34;
color: #61dafb;
font-family: "Work Sans", sans-serif;
font-size: 16px;
text-align: center;
line-height: 1.4; }
main {
height: 70%;
display: inline-flex;
justify-content: center;
align-items: center;
flex-direction: column;
max-width: 430px; }
h1 {
font-size: 2.5em;
font-weight: 500;
margin: 0 auto .5em; }
@media screen and (max-width: 640px) {
h1 {
font-size: 1.75em; } }
h2 {
margin-bottom: 1em; }
p {
font-weight: 300;
font-size: 1.25em; }
p:first-of-type {
margin-bottom: .5em; }
p.error-msg {
color: #c92d2d;
font-size: 1em;
font-weight: 500;
margin-top: 1em; }
.btn {
display : flex;
width: 50%;
padding:10px;
justify-content:center;
}
.wtext
{
color: white;
}
hr {
width: 100%;
border: 0;
border-bottom: 1px dashed white;
margin-bottom: 2em; }
#root {
width: 100%; }
ul2 {
padding: .5em 0;
font-weight: 300;
list-style: none;
text-align: left;
color: white;
width: 100%; }
ul2 li {
display: block;
margin-bottom: .75em;
padding: 0 .75em .75em .5em;
border-bottom: 1px dashed rgba(255, 255, 255, 0.5); }
ul2 li div {
display: inline-flex;
align-items: center;
text-align: left; }
ul2 li label {
flex-basis: 100%;
margin-bottom: 0; }
label {
display: block;
margin-bottom: .25em;
text-align: left; }
input, select, textarea {
display: block;
width: 100%;
margin-bottom: 1em;
border: none;
border-radius: 4px;
padding: 12px;
font-family: "Work Sans", sans-serif;
font-weight: 300;
font-size: 1em; }
input[type="checkbox"] {
margin: 0 8px 0 0;
width: initial; }
button {
width: 50%;
background: #61dafb;
color: #282c34;
font-family: "Work Sans", sans-serif;
font-size: 1em;
margin: .5em auto 0;
padding: .75em 1em;
border: none;
border-radius: 4px;
cursor: pointer;
-webkit-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out; }
button.btn-delete {
margin: 0 0 0 10px;
padding: 0;
background: none;
color: rgba(255, 255, 255, 0.5);
font-size: 26px;
font-weight: 300;
line-height: 1;
flex-basis: 10%; }
button.btn-delete:hover {
color: #c92d2d; }
img {
margin-left: 19%;
margin-right: 20%;
margin-top: 5%;
margin-bottom: -3%;
}
#form-div{
align-items: center;
margin-bottom:1%;
height:100%;
}
@media only screen and (max-width:720px){
.btn {
display : flex;
flex-direction: column;
align-items: center;
}
p>b{
font-size: 0.95rem;
padding:20px;
}
.btn button{
padding:10px !important;
font-size: 0.8rem;
width:80%;
margin:10px !important;
}
}
@media only screen and (max-width: 1080px){
body{
overflow-x: hidden;
}
main {
max-width:90%;
max-height: 200%;
padding:10px;
}
#root{
margin:0 auto;
padding:0;
}
p {
font-weight: 300;
font-size: 1.25em; }
p:first-of-type {
margin-bottom: .5em; }
p.error-msg {
color: white;
font-size: 1em;
font-weight: 500;
margin-top: 1em; }
h1{
font-size:30px;
}
button{
width:50%;
height:15%;
border-radius:8px;
font-size:18px;
font-weight: bold;
margin-top:6% !important;
padding:5px !important;
}
input{
width:90%;
height:10%;
border-radius:10px;
font-size:20px;
font-weight:initial;
}
#form-div{
margin-top:1%;
height:100%;
}
img {
width: 70%;
align-items:center;
margin-left: 13%;
margin-right: 20%;
margin-top: 16%;
}
}
</style>
</head>
<body>
<nav>
<div class="logo">Reconator</div>
<input type="checkbox" id="click">
<label for="click" class="menu-btn">
<i class="fas fa-bars"></i>
</label>
<ul>
<li><a href="/">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="queue">Queue</a></li>
<li><a href="scanned">Scanned</a></li>
<li><a class="active" href="#">Issues</a></li>
</ul>
</nav>
<!-- <div id = "form-div"> -->
<br><br>
<center>
<h1 style="color:white;"> Issues </h1>
<br>
<p> If you find any issues in Reconator report in <span class="wtext">file an issue</span> button
<p>If you want to add a tool or have any idea to improve the tool fill the form in <span class="wtext">i have an idea !</span> button
<br><br>
<div class="btn">
<button style="margin:30px" onclick="window.location.href='https://github.com/gokulapap/Reconator/issues'"> File an issue ⚠️ </button>
<button style="margin:30px" onclick="window.location.href='https://forms.gle/VaZ9e4QTBxhjk2At7'"> I have an idea 🤔 </button>
</div>
</center>
<!-- </div> -->
</body>
</html>