better styling on render page

now solarized dark
This commit is contained in:
ansuz
2016-01-30 14:18:20 +01:00
parent a718f89e08
commit fd1e5d5735
2 changed files with 125 additions and 14 deletions

View File

@@ -2,40 +2,31 @@
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type"/>
<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;
}
.full {
#target {
position: fixed;
box-sizing: border-box;
border: 1px solid blue;
width: 100%;
height: 100vh;
font-size: 15px;
background-color: #222;
color: #CCC;
top: 0px;
}
textarea{
left: 0px;
display: none;
}
#target {
right: 0px;
overflow: scroll;
z-index: 10;
}
</style>
</head>
<body>
<textarea class="half"></textarea>
<div id="target" class="full">
<div id="inner"></div>
</div>
<textarea style="display: none;"></textarea>
</body>
</html>