mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2026-05-27 16:00:26 -04:00
46 lines
1008 B
HTML
46 lines
1008 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<base href="/">
|
|
<title>Nebula render</title>
|
|
|
|
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:light" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:semibold" rel="stylesheet">
|
|
|
|
<style>
|
|
html, body {
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
body {
|
|
background: linear-gradient(110deg, #92498F 0%, #45B3B2 100%);
|
|
font: normal 14px/16px "Source Sans Pro", Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
#chart-container {
|
|
position: absolute;
|
|
left: 8px;
|
|
bottom: 8px;
|
|
right: 8px;
|
|
top: 64px;
|
|
}
|
|
|
|
#chart-container.full {
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="chart-container"></div>
|
|
</body>
|
|
</html>
|