-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (52 loc) · 1.08 KB
/
index.html
File metadata and controls
52 lines (52 loc) · 1.08 KB
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
<html>
<head>
<style>
.container{
display: flex;
flex-direction: column;
}
.header{
background-color: #666;
text-align: center;
font-size: 35px;
color: white;
}
.model-select{
display: flex;
justify-content: center;
}
.diagram_item {
text-align: center;
margin: 10px;
padding: 20px;
width: 500px;
background-color: #f1f1f1;
border: 3px solid lightsteelblue;
border-radius: 8px;
}
.diagram_item p{font-size: 30px;}
img {max-width:100%;}
</style>
</head>
<body>
<div class="container">
<div class="header">
<p>IMX Model Viewer</p>
</div>
<div class="model-select" >
<div class="diagram_item" onClick="location.href='index_radial_tree.html';">
<img src="images/radialtree.png"/>
<p>Inheritance Radial Tree</p>
</div>
<div class="diagram_item" onClick="location.href='index_tree.html';">
<img src="images/tree.png"/>
<p>Inheritance Tree</p>
</div>
<div class="diagram_item" onClick="location.href='index_ref_graph.html';">
<img src="images/ref_graph.png"/>
<p>Reference Force Graph</p>
</div>
</div>
</div>
</body>
</html>