forked from alekseisivkov/public
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (49 loc) · 1.12 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
<!doctype html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<head>
<style>
.buttonContainer {
padding: 1.5rem;
}
.button {
width: 100%;
height: 56px;
background: #34D186;
color: #FFFFFF;
border: none;
outline:none;
box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.16);
border-radius: 100px;
font-size: 16px;
line-height: 150%;
font-weight: bold;
letter-spacing: 0.08rem;
text-transform: uppercase;
}
.button:active {
opacity: 0.72;
}
</style>
</head>
<body>
<div class="container">
<div class="buttonContainer">
<button class="button" onclick="closeBrowser">
Deep Link
</button>
</div>
</div>
<p>
<a href="boltPrelive://action/closeBrowser">Prelive Close browser deeplink</a>
<a href="bolt://action/closeBrowser">Live Close browser deeplink</a>
<a href="https://www.google.com">Open google check</a>
</p>
<script>
function closeBrowser() {
location.href='bolt://action/closeBrowser';
}
</script>
</body>
</html>