-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstars.html
74 lines (66 loc) · 1.41 KB
/
stars.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<style type="text/css">
html,
body {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
color: white;
font-family: Helvetica;
}
#canvas {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}
.info {
z-index: 100;
position: absolute;
top: 0;
left: 0;
}
.info #accordion-list .full-info-button {
background-color: #333333;
max-width: 300px;
width: 300px;
padding: 10px;
margin: 5px;
border-radius: 5px;
outline: 0;
border: 0;
text-align: left;
color: white;
}
.info #accordion-list .full-info-button:hover {
opacity: 0.6;
color: white;
}
.info #accordion-list .full-info {
/* padding: 10px; */
height: 0;
background-color: #121212;
max-width: 300px;
/* margin: 5px; */
overflow: hidden;
transition: height 0.7s ease, padding 0.7s ease, margin 0.7s ease;
border-radius: 5px;
}
</style>
</head>
<body>
<canvas id="canvas">
</canvas>
<div class="info">
<div id="accordion-list">
</div>
</div>
<script src="build/build.js" type="module" charset="utf-8"></script>
</body>
</html>