2016-08-17 17:28:50 +08:00
|
|
|
<!DOCTYPE html>
|
2016-12-27 21:10:20 +08:00
|
|
|
<html class="cp slide">
|
2016-08-17 17:28:50 +08:00
|
|
|
<head>
|
2017-01-12 21:26:10 +08:00
|
|
|
<title>CryptPad</title>
|
2016-08-17 17:28:50 +08:00
|
|
|
<meta content="text/html; charset=utf-8" http-equiv="content-type"/>
|
2017-05-02 20:17:17 +08:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2017-05-30 16:44:40 +08:00
|
|
|
<meta name="referrer" content="no-referrer" />
|
2017-08-22 00:08:37 +08:00
|
|
|
<script async data-bootload="/customize/template.js" data-main="/common/boot.js?ver=1.0" src="/bower_components/requirejs/require.js?ver=2.3.5"></script>
|
2016-08-17 17:28:50 +08:00
|
|
|
<style>
|
2016-09-30 23:39:16 +08:00
|
|
|
html, body {
|
|
|
|
overflow-y: hidden;
|
|
|
|
}
|
2016-10-13 00:40:26 +08:00
|
|
|
#iframe-container {
|
|
|
|
position: fixed;
|
2016-10-25 21:22:35 +08:00
|
|
|
top: 0px;
|
2016-10-13 00:40:26 +08:00
|
|
|
bottom: 0px;
|
|
|
|
right: 0px;
|
|
|
|
left: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
2016-09-30 23:39:16 +08:00
|
|
|
#pad-iframe {
|
|
|
|
width:100%;
|
|
|
|
height:100%;
|
|
|
|
border:none;
|
|
|
|
margin:0;
|
|
|
|
padding:0;
|
|
|
|
overflow:hidden;
|
2016-10-13 00:40:26 +08:00
|
|
|
box-sizing: border-box;
|
2016-09-14 22:02:20 +08:00
|
|
|
}
|
2017-03-10 23:46:36 +08:00
|
|
|
body #pad-iframe.fullscreen {
|
2016-10-03 20:21:39 +08:00
|
|
|
top: 0px;
|
2017-03-10 23:46:36 +08:00
|
|
|
height: 100%;
|
2016-10-03 20:21:39 +08:00
|
|
|
}
|
2016-10-13 00:40:26 +08:00
|
|
|
</style>
|
2016-08-17 17:28:50 +08:00
|
|
|
</head>
|
|
|
|
<body>
|
2016-10-13 00:40:26 +08:00
|
|
|
<div id="iframe-container">
|
2017-03-10 23:46:36 +08:00
|
|
|
<iframe id="pad-iframe", name="pad-iframe"></iframe><script src="/common/noscriptfix.js"></script>
|
2016-10-13 00:40:26 +08:00
|
|
|
</div>
|
2017-06-28 00:17:52 +08:00
|
|
|
|