mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2025-12-25 01:04:14 -05:00
36 lines
859 B
HTML
36 lines
859 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<base href="/" />
|
|
<title>Nebula dev</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: #ddd;
|
|
-webkit-font-smoothing: antialiased;
|
|
font: normal 14px/16px 'Source Sans Pro', Arial, sans-serif;
|
|
}
|
|
#app,
|
|
#app > div {
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body dir="ltr">
|
|
<div id="app"></div>
|
|
</body>
|
|
</html>
|