-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
75 lines (75 loc) · 2.7 KB
/
team.html
File metadata and controls
75 lines (75 loc) · 2.7 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
<!DOCTYPE HTML>
<html>
<!--
(c) 2022 coinpilot tech
all rights reserved, licensed under the agplv3.
https://github.com/coinpilot-tech/coinpilot-tech.github.io
-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>coinpilot tech</title>
<!-- favicon -->
<link href="https://coinpilot.com/assets-welcome/images/favicon.svg" rel="shortcut icon" type="image/x-icon">
<!-- fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<!-- style -->
<style>
body {
color: white;
background-image: radial-gradient( circle 610px at 5.2% 51.6%, rgba(5,8,114,1) 0%, rgba(7,3,53,1) 97.5% );
font-family: "Inter", -apple-system, "Helvetica", "Arial", sans-serif;
margin: 0;
padding: 0;
}
.center-container {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
width: 100vw;
}
.pane {
background: rgba(255, 255, 255, 0.2);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
height: 80vh;
width: 80vw;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.header {
font-weight: 600;
font-size: 3rem;
margin: 0;
}
.sub-header {
font-weight: 500;
font-size: 2rem;
}
.sub-sub-header {
font-size: 1.5rem;
display: block;
}
a {
color: aquamarine;
}
</style>
</head>
<body>
<div class="center-container">
<div class="pane">
<h1 class="header">team</h1>
<h1 class="sub-header"><a href="https://github.com/parabirb" target="_blank">parabirb</a> • <a href="https://github.com/expl0dingcat" target="_blank">expl0dingcat</a> • <a href="https://github.com/coinpilot-com" target="_blank">zearth</a> • <a href="https://github.com/incipious" target="_blank">incipious</a></h1>
<h1 class="sub-sub-header"><a href="/">go back</a> • <a href="https://github.com/coinpilot-tech/coinpilot-tech.github.io" target="_blank">page source</a></h1>
</div>
</div>
</body>
</html>