cryptpad/www/input/index.html
ansuz 50121c8ab6 a really basic collaborative input
type="text" is typically slower than the same code
when used to sync a textarea.

WATCH OUT!
2016-01-29 12:28:11 +01:00

34 lines
761 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: 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>