- It shows the code like a textarea and the canvas will to the right - It will take only the amount of height required for the code - The existing LiveCodeEditor was renamed as LiveCodeEditorLarge and still used or sketches
137 lines
1.9 KiB
CSS
137 lines
1.9 KiB
CSS
|
|
.livecode-editor-large .canvas-wrapper {
|
|
position: relative;
|
|
padding: 10px;
|
|
}
|
|
|
|
.livecode-editor-large canvas {
|
|
position: relative;
|
|
z-index: 0;
|
|
border: 1px solid #ddd;
|
|
height: 300px;
|
|
width: 300px;
|
|
}
|
|
|
|
.livecode-editor-large .code {
|
|
width: 100%;
|
|
padding: 5px;
|
|
min-height: 330px;
|
|
resize: none;
|
|
}
|
|
.livecode-editor-large .output {
|
|
padding: 5px;
|
|
}
|
|
|
|
.livecode-editor-large .CodeMirror {
|
|
height: 320px;
|
|
}
|
|
|
|
.canvas-editor canvas {
|
|
position: relative;
|
|
z-index: 0;
|
|
border: 1px solid #ddd;
|
|
}
|
|
.canvas-wrapper .output {
|
|
position: absolute;
|
|
z-index: 1;
|
|
width: 100%;
|
|
left: 0px;
|
|
top: 0px;
|
|
background-color: rgba(255, 255, 255, 0);
|
|
margin: 15px;
|
|
max-height: 200px;
|
|
}
|
|
|
|
.canvas-editor .code {
|
|
width: 100%;
|
|
padding: 5px;
|
|
/* min-height: 330px; */
|
|
resize: none;
|
|
}
|
|
/* .canvas-editor .output {
|
|
padding: 5px;
|
|
} */
|
|
|
|
.heading {
|
|
background: #eee;
|
|
padding: 10px;
|
|
clear: both;
|
|
color: #212529;
|
|
border: 1px solid #ddd;
|
|
}
|
|
|
|
.livecode-editor-large h2 {
|
|
font-size: 1.2em;
|
|
text-transform: uppercase;
|
|
margin: 0px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.livecode-editor-large .run {
|
|
float: right;
|
|
}
|
|
|
|
.livecode-editor-large .col-sm {
|
|
border: 1px solid #ddd;
|
|
}
|
|
|
|
.sketch-header h1 {
|
|
font-size: 1.5em;
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
.sketch-header {
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.sketch-card .sketch-title a {
|
|
font-weight: bold;
|
|
color: inherit;
|
|
}
|
|
|
|
|
|
.canvas-editor .CodeMirror {
|
|
background: #ffe;
|
|
border: 1px solid #eed;
|
|
margin-bottom: 10px;
|
|
border-radius: 10px;
|
|
height: 100%;
|
|
}
|
|
|
|
canvas {
|
|
border: 2px solid #eee;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.canvas-wrapper {
|
|
margin-bottom: -200px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.canvas-wrapper {
|
|
padding-top: 20px;
|
|
margin-left: 2em;
|
|
}
|
|
.canvas-wrapper .output {
|
|
left: 2em;
|
|
}
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.livecode-controls {
|
|
margin-left: 2em;
|
|
}
|
|
|
|
.livecode-controls a {
|
|
margin-left: 10px;
|
|
color: #666;
|
|
}
|
|
|
|
.canvas-editor {
|
|
margin: 10px 0px;
|
|
}
|