cryptpad/www/input/index.html

35 lines
761 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>
*{
padding: 0px;
margin: 0px;
}
textarea{
box-sizing: border-box;
border: 1px solid blue;
width: 100vw;
height: 100vh;
font-size: 25px;
background-color: #222;
color: #CCC;
}
input {
font-size: 25px;
background-color: #222;
color: #CCC;
height: 500px;
width: 800px;
}
</style>
</head>
<body>
<input type="text"></input>
</body>
</html>