Update layout
This commit is contained in:
parent
66416c919a
commit
13703bf575
@ -8,6 +8,12 @@ html, body {
|
|||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
background-color: #444;
|
background-color: #444;
|
||||||
|
height: 100%;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
overscroll-behavior-y: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6, p {
|
h1, h2, h3, h4, h5, h6, p {
|
||||||
@ -34,9 +40,13 @@ img {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#header {
|
#header {
|
||||||
padding: 10px 0 ;
|
position: fixed;
|
||||||
|
z-index: 1000;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
background-color: #444;
|
background-color: #444;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
padding: 10px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -46,67 +56,34 @@ img {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#container {
|
#container {
|
||||||
min-height: 100%;
|
position: absolute;
|
||||||
height: auto !important;
|
width: 100%;
|
||||||
height: 100%;
|
|
||||||
width: 1100px;
|
|
||||||
padding: 20px;
|
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
border-radius: 10px;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
#container .section {
|
#editor-wrapper {
|
||||||
margin-bottom: 20px;
|
border-right: 10px solid #eee;
|
||||||
}
|
}
|
||||||
|
|
||||||
#content .mode {
|
#preview-wrapper {
|
||||||
border: 1px solid #ddd;
|
padding-left: 10px;
|
||||||
border-radius: 3px;
|
|
||||||
width: 535px;
|
|
||||||
display: inline-block;
|
|
||||||
vertical-align: top;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#content .mode .content {
|
.column {
|
||||||
padding: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#preview {
|
|
||||||
margin-left: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#leftColumn {
|
|
||||||
float: left;
|
|
||||||
width: 700px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#rightColumn {
|
|
||||||
width: 240px;
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
textarea#markdown {
|
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
width: 100%;
|
white-space: nowrap;
|
||||||
height: 400px;
|
display: inline-block;
|
||||||
overflow: auto;
|
width: 50%;
|
||||||
font-size: 15px;
|
vertical-align: top;
|
||||||
border: none;
|
overflow-y: scroll;
|
||||||
/* border: 2px solid #D1D1BC;*/
|
|
||||||
resize: vertical;
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#editor {
|
|
||||||
width: 100%;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#footer {
|
#footer {
|
||||||
clear: both;
|
display :none;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 10px;
|
|
||||||
background-color: #444;
|
background-color: #444;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
@ -117,7 +94,6 @@ textarea#markdown {
|
|||||||
color: #999;
|
color: #999;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#footer #copyright a {
|
#footer #copyright a {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
color: #999;
|
color: #999;
|
||||||
|
@ -27,11 +27,9 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="container">
|
<div id="container">
|
||||||
<div id="content" class="section">
|
|
||||||
|
|
||||||
<div id="edit" class="mode">
|
|
||||||
<div class="content">
|
|
||||||
|
|
||||||
|
<div id="edit" class="column">
|
||||||
|
<div id="editor-wrapper">
|
||||||
<div id="editor"># Markdown syntax guide
|
<div id="editor"># Markdown syntax guide
|
||||||
|
|
||||||
## Headers
|
## Headers
|
||||||
@ -100,13 +98,11 @@ alert(message);
|
|||||||
|
|
||||||
This web site is using `markedjs/marked`.</div>
|
This web site is using `markedjs/marked`.</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div><!-- Do not insert new line here --><div id="preview" class="column">
|
||||||
|
<div id="preview-wrapper">
|
||||||
<div id="preview" class="mode">
|
|
||||||
<div id="output" class="content markdown-body">
|
<div id="output" class="content markdown-body">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -1,13 +1,28 @@
|
|||||||
$(function() {
|
$(function() {
|
||||||
var isEdited = false;
|
let isEdited = false;
|
||||||
|
|
||||||
|
let adjustScreen = () => {
|
||||||
|
let screenHeight = $(window).height();
|
||||||
|
let headerHeight = $('#header').outerHeight();
|
||||||
|
let containerHeight = screenHeight - headerHeight;
|
||||||
|
console.log(containerHeight);
|
||||||
|
$('#container').css({ top: `${headerHeight}px` });
|
||||||
|
$('#container').css({ height: `${containerHeight}px`});
|
||||||
|
$('.column').css({ height: `${containerHeight}px`});
|
||||||
|
};
|
||||||
|
|
||||||
|
$(window).resize(() => {
|
||||||
|
adjustScreen();
|
||||||
|
});
|
||||||
|
|
||||||
// Setup editor
|
// Setup editor
|
||||||
var editor = ace.edit('editor');
|
let editor = ace.edit('editor');
|
||||||
editor.getSession().setUseWrapMode(true);
|
editor.getSession().setUseWrapMode(true);
|
||||||
editor.setOptions({
|
editor.setOptions({
|
||||||
maxLines: Infinity,
|
maxLines: Infinity,
|
||||||
indentedSoftWrap: false,
|
indentedSoftWrap: false,
|
||||||
fontSize: 14,
|
fontSize: 14,
|
||||||
|
autoScrollEditorIntoView: true,
|
||||||
theme: 'ace/theme/github',
|
theme: 'ace/theme/github',
|
||||||
// TODO consider some options
|
// TODO consider some options
|
||||||
});
|
});
|
||||||
@ -15,6 +30,7 @@ $(function() {
|
|||||||
editor.on('change', () => {
|
editor.on('change', () => {
|
||||||
isEdited = true;
|
isEdited = true;
|
||||||
convert();
|
convert();
|
||||||
|
adjustScreen();
|
||||||
});
|
});
|
||||||
|
|
||||||
let convert = () => {
|
let convert = () => {
|
||||||
@ -31,4 +47,5 @@ $(function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
convert();
|
convert();
|
||||||
|
adjustScreen();
|
||||||
});
|
});
|
Loading…
Reference in New Issue
Block a user