forked from Orillusion/orillusion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (68 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Orillusion | Samples</title>
<style>
html,
body {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
margin: 0;
width: 100%;
height: 100%;
background: #000;
color: #fff;
display: flex;
}
.menu {
position: fixed;
z-index: 10000;
left: 0;
top: 0;
bottom: 0;
width: 150px;
padding: 20px;
overflow: overlay;
border-right: 1px solid #fff;
background: rgba(0, 0, 0, .6);
}
.menu>p {
text-align: left;
padding: 10px 0;
margin: 0;
border-bottom: 1px solid #fff;
text-transform: capitalize;
}
.menu>a {
display: block;
text-align: left;
margin: 5px 0;
color: #00bcd4;
text-decoration: none;
cursor: pointer;
overflow: hidden;
text-overflow: ellipsis;
}
.menu>a.active {
color: #f44336;
}
.menu>a:hover {
text-decoration: underline;
}
/* width */
::-webkit-scrollbar {
width: 0;
}
iframe {
border: none;
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<script type="module" src="/samples/index.ts"></script>
</body>
</html>