cryptpad/www/text/index.html
2016-01-30 17:15:59 +01:00

30 lines
625 B
HTML

<!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>
*{
padding: 0px;
margin: 0px;
}
textarea{
box-sizing: border-box;
border: 1px solid blue;
width: 100%;
height: 100vh;
font-size: 25px;
background-color: #073642;
color: #839496;
overflow-x: hidden;
}
</style>
</head>
<body>
<textarea></textarea>
</body>
</html>