Files
outline/server/static/index.html
Tom Moor 044486b9a6 Cleanup
2017-05-27 11:22:42 -07:00

37 lines
597 B
HTML

<!doctype html>
<html>
<head>
<title>Atlas</title>
<style>
body, html {
margin: 0;
padding: 0;
}
#root {
flex: 1;
height: 100%;
}
.container {
display: flex;
flex;
}
.header {
display: flex;
flex: 1;
height: 42px;
border-bottom: 1px solid #eee;
}
</style>
</head>
<body style='display: flex; width: 100%; height: 100%;'>
<div id="root">
<div class="container">
<div class="header"></div>
</div>
</div>
</body>
</html>