mirror of https://github.com/Minres/RDL-Editor.git
57 lines
669 B
CSS
57 lines
669 B
CSS
|
body {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
overflow: hidden;
|
||
|
font: 16px Helvetica,sans-serif;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: #22a;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
display: block;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
margin: 20px;
|
||
|
}
|
||
|
|
||
|
.header {
|
||
|
display: block;
|
||
|
position: absolute;
|
||
|
background-color: #e8e8e8;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
height: 60px;
|
||
|
padding: 10px;
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
display: block;
|
||
|
position: absolute;
|
||
|
top: 90px;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
width: 640px;
|
||
|
}
|
||
|
|
||
|
#xtext-editor {
|
||
|
display: block;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
padding: 4px;
|
||
|
border: 1px solid #aaa;
|
||
|
}
|