-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
46 lines (44 loc) · 1.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
CRO into Keplr Wallet
</title>
<meta name="description" content="Integrate Crypto.org Chain into Keplr Wallet" >
<link rel="icon" href="https://crypto.org/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<style>
html { height: 100%;}
body {
background: rgb(2,0,36);
background: linear-gradient(180deg, rgba(2,0,36,1) 0%, rgba(28,9,121,1) 100%, rgba(0,212,255,1) 100%);
color: #FFF;
text-align: center;
}
.title {
font-size: 1.6rem;
}
#address {
margin-top: 20px;
font-family: "Lucida Console";
font-size: 1.2rem;
overflow-wrap: anywhere;
border-style: dotted;
padding: 10px;
}
#app {
padding-top: 60px;
}
</style>
</head>
<body>
<div id="app">
<div class="container-sm">
<div class="title">Crypto.org Wallet Address</div>
<div id="address">-</div>
</div>
</div>
</body>
</html>