Skip to content

Commit

Permalink
added basic styling
Browse files Browse the repository at this point in the history
  • Loading branch information
AJ ONeal committed Oct 6, 2010
1 parent 91145df commit 0e3e7a1
Showing 1 changed file with 33 additions and 3 deletions.
36 changes: 33 additions & 3 deletions index.html
@@ -1,14 +1,44 @@
<html>
<head>
<style>
#html_container {
float: left;
width: 400px;
}
#json_object textarea {
width: 500px;
float: left;
width: 400px;
height: 150px;
}
.url_input {
width: 600px;
}
</style>
<style>
#doc {
float: left;
}
div.custom_api {
float: right;
width: 600px;
}
.custom_api div, .custom_api span, .custom_api ul, .custom_api li {
margin: 10px;
padding: 5px;
}
.custom_api div {
border: 2px solid black;
}
.custom_api span {
border: 1px solid blue;
}
.custom_api ul {
border: 2px solid orange;
}
.custom_api li {
border: 1px solid green;
}
</style>
<link rel="stylesheet" type="text/css" href="vendor/highlight/styles/school_book.css" media="screen" />
<script src="vendor/remedial.js"></script>
<script src="vendor/showdown/showdown.js"></script>
Expand Down Expand Up @@ -114,6 +144,7 @@
</ul>
</p>

<div id="html_view"></div>
<div id="json_object">
Data go here:
<br/>
Expand All @@ -129,13 +160,12 @@
}
</textarea>
</div>
<div>
<div id="html_container">
Result go here:
<br/>
<pre>
<code id="html_object"></code>
</pre>
</div>
<div id="html_view"></div>
</body>
</html>

0 comments on commit 0e3e7a1

Please sign in to comment.