Files
cryptpad/www/render/index.html
T

33 lines
797 B
HTML
Raw Normal View History

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