-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
67 lines (53 loc) · 2.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="problem_specific/rubik.css">
<link rel="stylesheet" href="problem_specific/neural.css">
<link href="https://unpkg.com/lineupjs/build/LineUpJS.css" rel="stylesheet">
<script src="https://unpkg.com/lineupjs/build/LineUpJS.js"></script>
<title>Projection Space Explorer</title>
<link rel="shortcut icon" type="image/jpg" href="textures/favicon-v2.ico" />
<style>
body {
overflow: hidden;
margin: 0px;
padding: 0px;
}
.hiddenSvgs {
display: none;
}
.gutter{
background-color: grey;
}
</style>
<link href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" rel="stylesheet" />
</head>
<body>
<!-- Mounting point for the application -->
<div id="mountingPoint"></div>
<!-- Bundle script -->
<script src="dist/bundle.js"></script>
<!--<div id="testy" style="background: white; position: absolute; width: 1200px; height: 800px; top: 100px; left: 360px"></div>-->
<!-- Workaround chess svgs, do not remove -->
<div class="hiddenSvgs">
<img id="wr" src="textures/chess/Chess_rlt45.svg" width="45" height="45">
<img id="wn" src="textures/chess/Chess_nlt45.svg" width="45" height="45">
<img id="wb" src="textures/chess/Chess_blt45.svg" width="45" height="45">
<img id="wk" src="textures/chess/Chess_klt45.svg" width="45" height="45">
<img id="wq" src="textures/chess/Chess_qlt45.svg" width="45" height="45">
<img id="wp" src="textures/chess/Chess_plt45.svg" width="45" height="45">
<img id="br" src="textures/chess/Chess_rdt45.svg" width="45" height="45">
<img id="bn" src="textures/chess/Chess_ndt45.svg" width="45" height="45">
<img id="bb" src="textures/chess/Chess_bdt45.svg" width="45" height="45">
<img id="bk" src="textures/chess/Chess_kdt45.svg" width="45" height="45">
<img id="bq" src="textures/chess/Chess_qdt45.svg" width="45" height="45">
<img id="bp" src="textures/chess/Chess_pdt45.svg" width="45" height="45">
</div>
</body>
</html>