python-hserver/hserver/manage/style.css
Harald Christian Joachim Wolff b4ffe35e71 WIP management pages
2018-03-13 08:06:50 +01:00

223 lines
2.6 KiB
CSS

body,p,div,h1,h2,h3,h4,h5 {
font-family: "DejaVu Sans","Helvetica", "Arial", "Sans";
font-size: 14px;
}
body {
position: absolute;
display: block;
min-height:90%;
min-width: 90%;
}
h1,h2,h3,h4,h5 {
display: inline-block;
}
.popup {
position: absolute;
left: 75%;
top: 50%;
min-width: 180px;
min-height: 48px;
border: 1px solid #202040;
background-color: #C0C0FF;
border-radius: 5px;
padding: 5px;
}
* > .popup {
visibility: hidden;
}
div:hover > .popup {
visibility: visible;
z-index: 1;
}
.pulldown {
position: absolute;
left: 0%;
width: 100%;
border: 1px solid #202040;
background-color: #C0C0FF;
border-radius: 5px;
padding: 5px;
}
* > .pulldown {
visibility: hidden;
}
div:hover > .pulldown {
visibility: visible;
z-index: 1;
}
.button {
position: relative;
display: inline-block;
width: 14px;
height: 14px;
border: 1px solid #202040;
background-color: #A0A0FF;
border-radius: 5px;
}
.right {
float: right;
display: block;
}
#menu {
width: 90%;
border-bottom: 1px solid black;
margin-bottom: 40px;
}
#menu>a {
display: inline;
}
#menu>a>div {
padding: 10px;
display: inline-block;
}
#tree {
display: block;
width: 15%;
min-height: 80%;
position: relative;
float: left;
padding-right: 15px;
margin-right: 15px;
border-right: 1px solid black;
}
.row {
display: block;
}
.treenodename {
display: block;
right: 0px;
padding-left: 10px;
}
.treenodename:hover {
background-color: #E0E0FF;
}
.treenode {
display: block;
margin-top: 5px;
}
.treenode > .treenode {
border-top: 1px solid #E0E0FF;
padding-left: 10px;
margin-top: 5px;
}
.treenodename.selected {
background-color: #8080ff;
}
#currentnode {
padding-top: 5px;
}
#treelist {
padding-top: 10px;
}
#treelist > div {
padding-left: 4px;
padding-top: 5px;
padding-bottom: 10px;
border-top: 1px solid #404080;
}
#treelist > div > button {
float: right;
position: relative;
}
#treelist > div > button > .tooltip {
position: absolute;
top: 50%;
left: 25%;
min-width: 180px;
z-index: 1;
background-color: white;
border: 1px solid #404080;
border-radius: 5px;
padding: 10px;
}
#treelist > div > button > .tooltip {
visibility: hidden;
}
#treelist > div > button:hover > .tooltip {
visibility: visible;
}
#editor {
display: block;
left: 15%;
width: 85%;
}
textarea#editor {
min-width: 50%;
min-height: 300px;
}
.typename, .bold {
display: inline;
font-weight: bold;
}
.small {
font-size: 60%;
}
.block {
display: block;
border: 1px solid black;
background-color: #C0C0C0;
margin-bottom: 10px;
}
#icon {
width: 24px;
height: 24px;
}
#preview {
float: right;
right: 25px;
}
.vscroll {
overflow-y: scroll;
}