html {
    height: 100%;
    width: 100%;
}

body {
    height: 100%;
    min-height: 100%;
    margin: 0px;
    font-family: sans-serif;
    font-size: x-small;
    color: white;
    background-color: black;
}

input {
    font-size: x-small;
}

ul {
    list-style: none;
    padding-left: 10px;
}

div.panel {
    display: none;
    position: absolute;
    top: 10px;
    left: 10px;
    border: 3px solid lightgray;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    padding: 10px;
}

#main {
    height: 100%;
    width: 100%;
}

.fractal-canvas {
    position: absolute;
    top: 0px;
    left: 0px;
}

.overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}

#fractal-browser {
    display: none;
    width: 100%;
    height: 100%;
}

#max-iter {
    text-align: right;
    width: 4em;
}

/*
#controls {
    height: 11em;
}
*/

#controls ul {
    float: left;
    padding-left: 0px;
    margin-right: 2em;
}

#canvas-width, #canvas-height {
    width: 3em;
    text-align: right;
}

.width-height {
    width: 4em;
    display: inline-block;
}

#color-map-editor {
    width: 880px;
    height: 30px;
}

#color-stop-def {
    display: none;
    position: absolute;
    border: 1px solid lightgray;
    background-color: black;
    height: 2.75em;
    z-index: 2;
}


#color-stop-def ul {
    margin: 5px;
}

#color-stop-def li {
    float: left;
    margin-right: 4px;
}

#color-stop-def input[type="text"] {
    width: 2em;
    text-align: left;
}

#color-stop-pos {
    width: 4em;
}

#delete-color-stop {
    font-size: xx-small;
}

.color-stop-marker {
    background-color: gray;
}

.color-stop-marker:hover {
    background-color: lightgray;
}

#color-map-list {
    border: 1px solid lightgray;
    width: 300px;
    height: 300px;
    background-color: black;
    overflow-y: scroll;
}

#menu {
    display: none;
    border-left: 1px solid lightgray;
    border-top: 1px solid lightgray;
    border-right: 1px solid lightgray;
    position: absolute;
    z-index: 3;
}

#menu ul {
    margin: 0px;
    padding: 0px;
}

#menu li {
    background-color: black;
    border-bottom: 1px solid lightgray;
    padding: 1px;
    cursor: default;
}

#menu li:hover {
    background-color: lightgray;
    color: black;
}

#params {
    font-size: small; 
    width: 30em;
    height: 30em;
    background-color: rgba(255, 255, 255, 0.5);
}
