-
-
Notifications
You must be signed in to change notification settings - Fork 151
/
index.html
62 lines (54 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>router-basics</title>
<link href="https://unpkg.com/tachyons@4/css/tachyons.min.css" rel="stylesheet">
<style>
#debug {
position: relative;
}
a.toggle {
display: inline-block;
transform: rotate(-90deg);
margin: 0;
padding: 0.25rem 0.5rem;
position: absolute;
top: 3rem;
background: #eee;
color: black;
text-align: right;
text-decoration: none;
border-top-right-radius: 5px;
border-top-left-radius: 5px;
font-size: 0.875rem;
font-weight: 700;
}
#debug.open a.toggle {
left: -0.5rem;
}
#debug.close a.toggle {
right: -1rem;
}
#debug.close pre {
display: none;
}
.fadeout {
opacity: 0;
transition: opacity .5s ease-in;
transition-delay: .5s;
}
</style>
</head>
<body>
<div id="app"></div>
<footer class="fixed bottom-0 z-1 pa2 w-100 bg-black gray sans-serif">
<a class="link moon-gray" href="https://github.com/thi-ng/umbrella/tree/master/examples/router-basics">Source
code</a>, images by
<a class="link moon-gray" href="https://www.instagram.com/manomine/">@manomine</a>
</footer>
<script type="text/javascript" src="src/index.ts"></script>
</body>
</html>