view test_create/style.css @ 3141:335bc77627e0 tip

fixing discrete interface to allow labels to display
author Dave Moffat <me@davemoffat.com>
date Mon, 26 Jul 2021 12:15:24 +0100
parents 348d59ab726e
children
line wrap: on
line source
#screenblank {
    z-index: 1;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.75);
}
#popupHolder {
}
.popup {
    position: relative;
    z-index: 3;
    background-color: rgba(255, 255, 255, 1);
    width: 730px;
    height: 480px;
    display: inline-block;
    text-align: left;
    border-radius: 10px;
    box-shadow: 0px 0px 50px #000;
    padding: 10px;
    margin-top: 20px;
}
.popupTitle {
    width: 100%;
    height: 50px;
    font-size: 2em;
    text-align: center;
}
.popupButtons {
    position: absolute;
    bottom: 5px;
    width: 90%;
    margin-left: 30px;
    display: block;
    align-self: center;
}
#popupBack {
    float: left;
}
#popupNext {
    float: right;
}
#introdragdrop {
    width: 100%;
    height: 100px;
    border: 2px dashed black;
    font-size: 1.5em;
    text-align: center;
    padding-top: 30px;
    color: grey;
}
.new-test {
    cursor: pointer;
}
.new-test:hover {
    font-style: italic;
}
.node {
    padding: 10px 20px;
    border: 2px solid black;
    margin: 20px;
    border-radius: 20px;
    background-color: inherit;
}
.node > textarea {
    width: 80%;
}
.node > h1,
.node > h2,
.node > h3,
.node > h4,
.node > h5 {
    text-align: center;
}
.attribute {
    display: inline-block;
    margin: 0px 10px;
    border-left: 1px solid grey;
    border-right: 1px solid grey;
    padding: 5px 5px;
}
#setupNode {
    background-color: rgba(255, 10, 10, 0.25);
}
.pageNode {
    background-color: rgba(10, 255, 10, 0.25);
}