Files
nebula.js/examples/dev-mashup/index.html
Tobias Åström 2ce33628e5 chore: add dev mashup example (#536)
* chore: add dev mashup example

* chore: update example readme

* fix: update schema version

* chore: change stardust to dep
2020-11-16 13:12:45 +01:00

45 lines
827 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Nebula local mashup</title>
<style>
body {
background: #eee;
}
.content {
margin: 0 auto;
width: 80%;
max-width: 800px;
}
.object {
position: relative;
height: 400px;
background-color: white;
}
.toolbar {
background-color: white;
margin: 12px 0px;
}
.listbox {
position: relative;
height: 352px;
background-color: white;
}
</style>
</head>
<body>
<div class="content">
<div class="toolbar"></div>
<div class="object" data-type="bar"></div>
<div class="object" data-type="line"></div>
</div>
<script src="index.js"></script>
</body>
</html>