Files
nebula.js/examples/mashup/index.html
Miralem Drek 058fc55d97 initial commit
2019-01-29 17:19:00 +01:00

46 lines
976 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Nebula mashup</title>
<script src="./node_modules/enigma.js/enigma.js"></script>
<script src="../../packages/nucleus/dist/nucleus.js"></script>
<link rel="stylesheet" href="./node_modules/leonardo-ui/dist/leonardo-ui.css" type="text/css"/>
<style>
body {
background: #eee;
}
@font-face {
font-family: "LUI icons";
src: url(node_modules/leonardo-ui/dist/lui-icons.woff) format('woff'),
url(node_modules/leonardo-ui/dist/lui-icons.ttf) format('truetype');
}
.content {
margin: 0 auto;
width: 80%;
max-width: 800px;
}
.object {
position: relative;
width: 600px;
height: 400px;
background-color: white;
}
</style>
</head>
<body>
<div class="content">
<div class="object" data-type='foo'></div>
</div>
<script src="connect.js"></script>
<script src="index.js"></script>
</html>