forked from gissue/gissue.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (67 loc) · 2.23 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="Gissue-Download Github issues.">
<title>Gissue-Download GitHub issues.</title>
<link rel="icon" href="./img/logo.png" type="image/x-icon" />
<link rel="shortcut icon" href="./img/logo.png" type="image/x-icon" />
<script type="text/javascript" src="./lib/jquery-3.4.1.min.js"></script>
<script type="text/javascript" src="./lib/jszip.min.js"></script>
<script type="text/javascript" src="./lib/FileSaver.min.js"></script>
<script type="text/javascript" src="./js/gissue.js"></script>
<style type="text/css">
input {
width: 380px;
height: 30px;
font-size: 20px
}
input::-webkit-input-placeholder {
color: #999;
transition: color.5s;
font-size: 20px
}
input:focus::-webkit-input-placeholder,
input:hover::-webkit-input-placeholder {
color: #c2c2c2;
transition: color.5s;
}
button {
background-color: black;
border: none;
color: white;
padding: 5px 5px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 20px;
font-weight: bold
}
</style>
</head>
<body>
<div align="center" style="margin-top: 200px">
<div style="display: inline-block;" align="center">
<img src="./img/logo.png" height="140px"></img>
<p style="margin-top:10px ">
<strong style="font-size:30px;">
Download GitHub issues.
<strong>
</p>
</div>
<div style="display:inline-block;vertical-align:top">
<iframe
src=" https://ghbtns.com/github-btn.html?user=gissue&repo=gissue.github.io&type=star&count=false&size=large"
frameborder="0" scrolling="0" width="100px" height="30px"></iframe>
</div>
<br />
<input id="input-link" type="text" name="link" placeholder="https://github.com/user/repo" />
<button type="button" id="download" class="btn btn-primary" onclick="download()">Download</button>
<br />
<div style="margin-top:100px;">
<span id="status" style="font-size:20px"></span>
</div>
</div>
</body>
</html>