Files
nebula.js/commands/serve/web/eDev.html
2020-02-13 12:39:51 +01:00

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>