cryptpad/www/text/index.html

35 lines
758 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type"/>
<script data-main="main" src="/bower_components/requirejs/require.js"></script>
<style>
html, body{
padding: 0px;
margin: 0px;
overflow: hidden;
2016-02-01 13:14:48 +00:00
box-sizing: border-box;
}
textarea{
2016-01-30 16:15:59 +00:00
width: 100%;
height: 100vh;
2016-02-01 13:14:48 +00:00
max-width: 100%;
max-height: 100vh;
font-size: 25px;
2016-01-30 16:15:59 +00:00
background-color: #073642;
color: #839496;
overflow-x: hidden;
2016-01-30 16:26:39 +00:00
2016-02-01 13:14:48 +00:00
/* disallow textarea resizes */
2016-01-30 16:26:39 +00:00
resize: none;
}
</style>
</head>
<body>
<textarea></textarea>
</body>
</html>