You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
940 B
HTML
40 lines
940 B
HTML
9 years ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta content="text/html; charset=utf-8" http-equiv="content-type"/>
|
||
9 years ago
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||
9 years ago
|
<script data-main="main" src="/bower_components/requirejs/require.js"></script>
|
||
|
<style>
|
||
9 years ago
|
html, body{
|
||
9 years ago
|
padding: 0px;
|
||
|
margin: 0px;
|
||
9 years ago
|
overflow: hidden;
|
||
9 years ago
|
box-sizing: border-box;
|
||
9 years ago
|
}
|
||
|
textarea{
|
||
9 years ago
|
width: 100%;
|
||
9 years ago
|
height: 100vh;
|
||
9 years ago
|
max-width: 100%;
|
||
|
max-height: 100vh;
|
||
9 years ago
|
|
||
9 years ago
|
font-size: 18px;
|
||
9 years ago
|
background-color: #073642;
|
||
|
color: #839496;
|
||
|
|
||
|
overflow-x: hidden;
|
||
9 years ago
|
|
||
9 years ago
|
/* disallow textarea resizes */
|
||
9 years ago
|
resize: none;
|
||
9 years ago
|
}
|
||
9 years ago
|
textarea[disabled] {
|
||
|
background-color: #275662;
|
||
|
color: #637476;
|
||
|
}
|
||
9 years ago
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<textarea></textarea>
|
||
|
</body>
|
||
|
</html>
|
||
|
|