-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (50 loc) · 836 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Three.js geometry discovery</title>
<style>
.grid-container {
display: grid;
grid-template-columns: auto auto auto;
background-color: #2196F3;
padding: 10px;
}
.grid-item {
background-color: rgba(255, 255, 255, 0.8);
border: 1px solid rgba(0, 0, 0, 0.8);
padding: 20px;
font-size: 30px;
text-align: center;
}
iframe{
min-width: 480px;
min-height: 480px
}
#search{
width: 200px;
position: absolute;
left:50%;
margin-left:-100px;
top:3px;
border: solid 2px red;
}
body{
padding-top:20px;
overflow: hidden;
}
#container{
position: absolute;
top:30px;
left:0;
width: 100%;
height: 100%;
overflow: auto;
}
</style>
</head>
<body>
<script src="main.js"></script>
<div id = "container"></div>
<input id="search" type="text" placeholder="Quick Search"/>
</body>
</html>