cryptpad/www/render/index.html
2016-01-30 17:30:00 +01:00

33 lines
800 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type"/>
<link rel="stylesheet" href="/common/render-sd.css"></link>
<script data-main="main" src="/bower_components/requirejs/require.js"></script>
<style>
html, body {
padding: 0px;
margin: 0px;
}
#target {
position: fixed;
box-sizing: border-box;
border: 1px solid blue;
width: 100%;
height: 100%;
overflow: auto;
font-size: 15px;
top: 0px;
left: 0px;
}
</style>
</head>
<body>
<div id="target" class="full">
<div id="inner"></div>
</div>
<textarea style="display: none;"></textarea>
</body>
</html>