-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
72 lines (72 loc) · 1.61 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Inapp Debugger</title>
<style>
:root {
--light-blue: #e7ebf3;
--med-blue: #586786;
--navy: #11104d;
--white: #fff;
--border-radius: 20px;
}
html,
body {
background-color: var(--light-blue);
}
ul,
li {
all: unset;
display: block;
}
a,
button {
all: unset;
cursor: pointer;
transition: transform 0.2s ease;
box-sizing: border-box;
}
a:active,
button:active {
transform: scale(0.9);
transform-origin: center;
}
@media (hover: hover) {
a:focus-visible,
button:focus-visible {
outline: 1.5px dashed var(--med-blue);
outline-offset: 3px;
}
}
body {
font-family: Arial;
color: var(--med-blue);
margin-bottom: 15px;
}
*,
*:before,
*:after {
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
}
</style>
</head>
<body>
<div id="app"></div>
<script src="//cdn.jsdelivr.net/npm/eruda"></script>
<script>
eruda.init();
</script>
<script type="module" src="/src/main.tsx"></script>
<!-- Self-hosted GDPR complaint hosting Plausible -->
<script
defer
src="https://shalanah.store/js/script.js"
data-domain="inappdebugger.com"
></script>
</body>
</html>