css stuff

This commit is contained in:
pg
2015-03-28 23:11:45 +00:00
parent f7c0d086d3
commit d333ecb21e
9 changed files with 48 additions and 14 deletions

BIN
public/images/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View File

@@ -7,7 +7,7 @@ jQuery(function($){
var tx_input = $('#tx_input');
var input = tx_input[0];
input.value = input.innerHTML;
input.value = input.textContent;
tx_input.val(input.value)
var text_preview = $('#text_preview')[0];
var html_output = $('#html_output')[0];

View File

@@ -7,19 +7,47 @@ body {
background-color: #000000;
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
color: #ffffff;
margin-left: auto;
margin-right: auto;
}
a {
color: #00B7FF;
}
#title_text{
font-family: "andale mono", "lucida console", monospace;
font-size:30px;
}
#home {
display:block;
}
#markdown-editor {
margin-top:50px;
min-width:500px;
min-height:300px;
color: #000000
table {
margin-left: auto;
margin-right: auto;
border-collapse : collapse;
}
table th,
table td {
padding : 4px 8px;
border : 1px solid #aaa;
}
ul {
padding-left: 2em;
}
#logo {
display: block;
margin-top: 50px;
margin-bottom: 70px;
margin-left: auto;
margin-right: auto;
width:30%;
padding: 20%;
background-image: url(../images/logo.png);
background-size: contain;
background-repeat: no-repeat;
}