mirror of
/repos/Prototyper.git
synced 2025-12-30 06:31:32 +01:00
91 lines
1.4 KiB
CSS
91 lines
1.4 KiB
CSS
body {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.container {
|
|
width: 100%
|
|
}
|
|
.ace_bold {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.ace_italic {
|
|
font-style: italic;
|
|
}
|
|
|
|
#header {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
height: 200px;
|
|
width: 100%;
|
|
background-color: black;
|
|
}
|
|
|
|
#htext {
|
|
padding-left: 20px;
|
|
color: white;
|
|
font-family: baskerville, palatino, 'palatino linotype', georgia, serif;
|
|
}
|
|
|
|
#htext div {
|
|
display: inline;
|
|
}
|
|
|
|
#content {
|
|
position: fixed;
|
|
top:200px;
|
|
width: 100%;
|
|
bottom: 0;
|
|
}
|
|
|
|
#editor {
|
|
margin: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 370px;
|
|
right: 0;
|
|
}
|
|
|
|
#tree {
|
|
left:0;
|
|
right:370px;
|
|
/*bottom: 0px;*/
|
|
}
|
|
#htext a {
|
|
color: #aaf;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* MULTI-LEVEL DROPDOWNS FOR BOOTSTRAP */
|
|
.dropdown-menu .sub-menu {
|
|
left: 100%;
|
|
position: absolute;
|
|
top: 0;
|
|
visibility: hidden;
|
|
margin-top: -1px;
|
|
}
|
|
.dropdown-menu li:hover .sub-menu {
|
|
visibility: visible;
|
|
display: block;
|
|
}
|
|
.navbar .sub-menu:before {
|
|
border-bottom: 7px solid transparent;
|
|
border-left: none;
|
|
border-right: 7px solid rgba(0, 0, 0, 0.2);
|
|
border-top: 7px solid transparent;
|
|
left: -7px;
|
|
top: 10px;
|
|
}
|
|
.navbar .sub-menu:after {
|
|
border-top: 6px solid transparent;
|
|
border-left: none;
|
|
border-right: 6px solid #fff;
|
|
border-bottom: 6px solid transparent;
|
|
left: 10px;
|
|
top: 11px;
|
|
left: -6px;
|
|
}
|
|
/* END MULTI-LEVEL DROPDOWNS FOR BOOTSTRAP */
|