You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
152 lines
2.1 KiB
CSS
152 lines
2.1 KiB
CSS
10 years ago
|
body {}
|
||
|
|
||
|
a {
|
||
|
text-decoration: none;
|
||
|
color: green;
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
|
||
|
#split {
|
||
|
position: absolute;
|
||
|
left: 0; right: 0;
|
||
|
top: 0; bottom: 32px;
|
||
|
}
|
||
|
|
||
|
#editor {
|
||
|
border-right: 2px dotted gray;
|
||
|
}
|
||
|
|
||
|
#editor textarea {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
border: none;
|
||
|
}
|
||
|
|
||
|
#preview {}
|
||
|
|
||
|
#preview .iframe {
|
||
|
position: absolute;
|
||
|
top: 32px;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
}
|
||
|
|
||
|
#preview .iframe iframe {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
border: none;
|
||
|
}
|
||
|
|
||
|
#previewform {
|
||
|
display: inline;
|
||
|
}
|
||
|
|
||
|
.label {
|
||
|
text-transform: uppercase;
|
||
|
font-size: smaller;
|
||
|
}
|
||
|
|
||
|
#editortext {
|
||
|
position: absolute;
|
||
|
top: 32px;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
}
|
||
|
|
||
|
#openmenucontext {
|
||
|
position: relative;
|
||
|
display: inline;
|
||
|
z-index: 10000;
|
||
|
}
|
||
|
|
||
|
#openmenu {
|
||
|
padding: 10px;
|
||
|
position: absolute;
|
||
|
left: 0; top: 32px;
|
||
|
background: #EEE;
|
||
|
width: 360px;
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
#footer {
|
||
|
position: absolute;
|
||
|
left: 0;
|
||
|
bottom: 0;
|
||
|
right: 0;
|
||
|
text-align: center;
|
||
|
font-size: smaller;
|
||
|
padding-bottom: 10px;
|
||
|
}
|
||
|
|
||
|
/* ********************************* */
|
||
|
/* aa_frames.js: Simple css "frames" */
|
||
|
/* ********************************* */
|
||
|
|
||
|
.frame {
|
||
|
position: absolute;
|
||
|
left: 0; right: 0;
|
||
|
top: 0; bottom: 0;
|
||
|
}
|
||
|
|
||
|
.left {
|
||
|
position: absolute;
|
||
|
left: 0; right: 50%;
|
||
|
top: 0; bottom: 0;
|
||
|
}
|
||
|
|
||
|
.right {
|
||
|
position: absolute;
|
||
|
left: 50%; right: 0;
|
||
|
top: 0; bottom: 0;
|
||
|
}
|
||
|
|
||
|
.top {
|
||
|
position: absolute;
|
||
|
left: 0; right: 0;
|
||
|
top: 0; bottom: 50%;
|
||
|
}
|
||
|
|
||
|
.bottom {
|
||
|
position: absolute;
|
||
|
left: 0; right: 0;
|
||
|
top: 50%; bottom: 0;
|
||
|
}
|
||
|
|
||
|
.hdiv {
|
||
|
position: absolute;
|
||
|
left: 50%;
|
||
|
top: 0; bottom: 0;
|
||
|
z-index: 100;
|
||
|
}
|
||
|
|
||
|
.hdiv .divcontents {
|
||
|
position: absolute;
|
||
|
left: -15px;
|
||
|
width: 30px;
|
||
|
top: 10%; bottom: 10%;
|
||
|
cursor: move;
|
||
|
}
|
||
|
|
||
|
.vdiv {
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
left: 0; right: 0;
|
||
|
background: gray;
|
||
|
cursor: move;
|
||
|
z-index: 100;
|
||
|
}
|
||
|
|
||
|
.vdiv .divcontents {
|
||
|
position: absolute;
|
||
|
top: -15px;
|
||
|
height: 30px;
|
||
|
left: 0; right: 0;
|
||
|
cursor: move;
|
||
|
}
|
||
|
|