cryptpad/www/render/index.html

60 lines
1.5 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type"/>
2016-02-03 11:50:36 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="/common/render-sd.css"></link>
<script data-main="main" src="/bower_components/requirejs/require.js"></script>
<style>
html, body {
padding: 0px;
margin: 0px;
2016-02-01 13:14:32 +00:00
box-sizing: border-box;
}
#target {
position: fixed;
width: 100%;
2016-02-14 11:01:05 +00:00
max-width: 100%;
2016-01-30 16:30:00 +00:00
height: 100%;
overflow: auto;
font-size: 15px;
top: 0px;
left: 0px;
}
2016-01-30 17:04:01 +00:00
#inner {
margin: 15px;
}
/* don't show the textarea, it's strictly functional */
2016-01-30 17:04:01 +00:00
textarea {
display: none;
}
/* don't let images overflow*/
img {
max-width: 100%;
}
2016-02-01 13:14:32 +00:00
/* monospace for code */
code {
font-family: monospace;
}
/* bigger text size for difficult to read elements */
blockquote, p, pre, code, li {
font-size: 20px;
}
/* tables */
table, thead, tbody, th, tr, td{
border: 1pt solid #586e75;
background-color: #002b36;
padding: 15px;
}
</style>
</head>
<body>
2016-01-30 17:04:01 +00:00
<div id="target">
<div id="inner"></div>
</div>
2016-01-30 17:04:01 +00:00
<textarea></textarea>
</body>
</html>