forked from archamoney/Archa-GitHub-Checks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (82 loc) · 1.93 KB
/
index.html
File metadata and controls
93 lines (82 loc) · 1.93 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>DEP | A dependency manager for Pull Requests</title>
<style>
* {
margin: 0;
padding: 0;
font-weight: 300;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
text-align: center;
box-sizing: border-box;
}
.container {
font-size: 1.2em;
height: 100vh;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
}
section {
flex-grow: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
max-width: 640px;
padding: 0px 20px;
}
h1 {
padding-top: 10px;
}
section p {
padding: 20px 0px;
font-size: 1rem;
}
.button,
.button:hover,
.button:active {
border: 1px solid green;
color: white;
font-size: 1em;
background-color: #28a745;
padding: 5px 10px;
border-radius: 3px;
text-decoration: none;
}
footer p {
padding: 10px 0px;
font-size: 0.8em;
}
footer a {
font-size: 0.9em;
color: black !important;
}
</style>
</head>
<body>
<div class="container">
<section>
<img src="https://github.com/z0al/dep/raw/master/docs/assets/logo.png" width="128" height="128" alt="Bot logo" />
<h1>DEP</h1>
<p>
A Dependency Manager for Pull Requests
</p>
<a class="button" href="https://github.com/apps/dep"> Add to GitHub</a>
</section>
<footer>
<p>
Built with ❤️ by
<a href="https://ahmed.sd">Ahmed T. Ali</a>
</p>
</footer>
</div>
</body>
</html>