-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (77 loc) · 2.13 KB
/
index.html
File metadata and controls
89 lines (77 loc) · 2.13 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" media="all" href="/css/style.css">
<title>2PG GitHub</title>
<style>
header {
background: linear-gradient(
to right,
hsl(98 100% 62%),
hsl(204 100% 59%)
);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-align: center;
}
h1 {
font-size: 10vmin;
line-height: 1.1;
}
body {
background: hsl(204 100% 5%);
min-block-size: 100%;
min-inline-size: 100%;
box-sizing: border-box;
display: grid;
place-content: center;
font-family: system-ui;
font-size: min(200%, 5vmin);
}
h1, p, body {
margin: 0;
}
p {
font-family: "Dank Mono", ui-monospace, monospace;
}
a {
text-decoration: none;
}
html {
block-size: 100%;
inline-size: 100%;
}
div {
text-align: center;
}
img {
margin: 25px 25px 0 0;
max-width: 384px;
}
</style>
</head>
<body>
<header>
<h1>2PG [twopg]</h1>
<p>Making Discord applications more accessible to everyone.</p>
</header>
<div>
<a href="/oauth">
<img src="https://socialify.git.ci/twopg/oauth/image?description=1&font=Inter&logo=https://cdn.pixabay.com/photo/2016/12/18/12/49/cyber-security-1915628_960_720.png&owner=1&pattern=none&theme=Dark" alt="OAuth">
</a>
<a href="/music">
<img src="https://socialify.git.ci/twopg/music/image?logo=https://cdn.pixabay.com/photo/2015/12/09/22/09/music-1085655_960_720.png&description=1&owner=1&pattern=none&theme=Dark" alt="Music" />
</a>
</div>
<div>
<a href="https://github.com/twopg/dashboard">
<img src="https://socialify.git.ci/twopg/dashboard/image?logo=https://cdn.pixabay.com/photo/2013/07/12/12/30/cogwheel-145804_960_720.png&description=1&owner=1&pattern=none&theme=Dark" alt="Dashboard" />
</a>
<a href="https://github.com/twopg/bot">
<img src="https://socialify.git.ci/twopg/bot/image?logo=https%3A%2F%2F2pg.xyz%2Fassets%2Fimg%2F2pg-avatar-transparent.svg&description=1&owner=1&pattern=none&theme=Dark" alt="Bot" />
</a>
</div>
</body>
</html>