You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
737 B
51 lines
737 B
7 months ago
|
.editareas {
|
||
|
margin: auto;
|
||
|
display: flex;
|
||
|
justify-content: flex-start;
|
||
|
}
|
||
|
.editarea {
|
||
|
width: 30%;
|
||
|
border: 3px solid #E0B0FF;
|
||
|
border-style: outset;
|
||
|
margin-right: 1em;
|
||
|
margin-left: 0;
|
||
|
}
|
||
|
|
||
|
.editor {
|
||
|
min-width: 35%;
|
||
|
}
|
||
|
.editform {
|
||
|
width: 100%%;
|
||
|
margin: 0 auto;
|
||
|
}
|
||
|
#editorsubmitform {
|
||
|
padding-top: 1em;
|
||
|
}
|
||
|
.required label {
|
||
|
display: block;
|
||
|
padding-bottom: 2px;
|
||
|
width: 100%
|
||
|
}
|
||
|
textarea {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
box-sizing: border-box;
|
||
|
min-height: 250px;
|
||
|
background: #E0B0FF;
|
||
|
outline: none;
|
||
|
font-family: Courier, sans-serif;
|
||
|
font-size: 16px;
|
||
|
}
|
||
|
|
||
|
iframe {
|
||
|
bottom: 0;
|
||
|
position: relative;
|
||
|
margin-top: 1em;
|
||
|
width: 100%;
|
||
|
height: 30em;
|
||
|
}
|
||
|
#html {
|
||
|
background-color: #60337F;
|
||
|
color: lightgrey;
|
||
|
}
|