Skip to content
Snippets Groups Projects
display.css 6.99 KiB
Newer Older
  • Learn to ignore specific revisions
  • #3d-graph {
        display: flex;
    }
    
    
    .detail-view-info-area::-webkit-scrollbar {
        width: 6px;
    
    }
    
    .detail-view-info-area::-webkit-scrollbar-track {
    
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        background-color: #f5f5f5;
    
    }
    
    .detail-view-info-area::-webkit-scrollbar-thumb {
        background-color: darkgray;
    }
    
    .bottom-container-tab-content::-webkit-scrollbar {
        width: 6px;
        height: 8px;
    
    }
    
    .bottom-container-tab-content::-webkit-scrollbar-track {
    
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        background-color: #f5f5f5;
    
    }
    
    .bottom-container-tab-content::-webkit-scrollbar-thumb {
        background-color: darkgray;
    }
    
    
    .node-label {
        font-size: 14px;
        color: white;
        font-weight: bold;
        /*text-align: center;*/
        padding: 1px 4px;
        border-radius: 4px;
    
        background-color: rgba(0, 0, 0, 0.7);
    
    .no-select {
        -webkit-touch-callout: none; /* iOS Safari */
        -webkit-user-select: none; /* Safari */
        -khtml-user-select: none; /* Konqueror HTML */
        -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
        user-select: none; /* Non-prefixed version, currently
                                      supported by Chrome, Edge, Opera and Firefox */
    }
    
    
    .close-button {
        pointer-events: all;
        z-index: 99;
        cursor: pointer;
    
        right: 30px;
    
    .fullscreen-button {
        pointer-events: all;
        z-index: 99;
        cursor: pointer;
        left: 15px;
        top: 5px;
        position: absolute;
        font-size: 30px;
    }
    
    
        width: 20%;
    
        min-width: 300px;
    
        height: 100%;
        background-color: whitesmoke;
        padding: 10px;
    
        top: 0;
        left: 0;
        overflow: hidden;
        border-radius: 50%;
        display: inline;
        margin-top: 10px;
        margin-bottom: 20px;
    }
    
    
    .detail-view-info-area {
        overflow-y: auto;
        height: 100%;
    }
    
    
    .detail-view-top-area {
        position: relative;
        width: 100%;
        overflow: auto;
        text-align: center;
    }
    
    
    .detail-view-text-area {
        display: block;
    
        padding-left: 25px;
        padding-right: 25px;
    
    Matthias Konitzny's avatar
    Matthias Konitzny committed
        /*padding-bottom: 130px;*/
    
    .detail-view-link-area {
        display: block;
        margin-top: 25px;
        padding-left: 25px;
        padding-right: 25px;
    }
    
    
        /*text-align: center;*/
    
        font-family: CuratorRegular, Helvetica Neue, Helvetica, Arial, sans-serif;
    
        font-size: 1.6vw;
        padding-left: 5px;
        padding-right: 5px;
    }
    
    
    .detail-view-media-area {
    
        width: 100%;
    
        padding: 10px;
    }
    
    .detail-view-video {
        object-fit: scale-down;
        width: 100%;
        height: auto;
    
    Matthias Konitzny's avatar
    Matthias Konitzny committed
    .detail-view-spacer {
        height: 120px;
        width: 100%;
    }
    
    
        position: absolute;
    
    Matthias Konitzny's avatar
    Matthias Konitzny committed
        bottom: 0;
    
        pointer-events: none;
    
    Matthias Konitzny's avatar
    Matthias Konitzny committed
        width: 350px;
    
        max-width: 400px;
    
    Matthias Konitzny's avatar
    Matthias Konitzny committed
        display: block;
    
        background-color: rgba(0, 0, 0, 0.6);
    
    Matthias Konitzny's avatar
    Matthias Konitzny committed
    .relation {
        display: inline-block;
    
        padding-right: 5px;
    
    Matthias Konitzny's avatar
    Matthias Konitzny committed
        color: #fff;
        font-size: 13px;
        line-height: 20px;
    
        font-family: CuratorRegular, Helvetica Neue, Helvetica, Arial, sans-serif;
    
    Matthias Konitzny's avatar
    Matthias Konitzny committed
        text-transform: uppercase;
        margin-bottom: 6px;
        height: 17px;
    
        z-index: 100;
        cursor: pointer;
        pointer-events: all;
    
    Matthias Konitzny's avatar
    Matthias Konitzny committed
    .rel-container {
        display: block;
        height: 2px;
        width: 78px;
    
    .bottom-container-tab-content {
        display: none;
        /*padding: 6px 0px;*/
        /*border-top: none;*/
        overflow-x: auto;
        /*height: 100px;*/
        height: 100%;
        width: 100%;
    
    
    .active-tab-nav {
        color: black;
        font-weight: bold;
    
    
    .active-tab-content {
        display: flex;
        align-items: center;
    
    .bottom-container {
    
        position: absolute;
        bottom: 0;
        left: 0;
    
    Harm Kube's avatar
    Harm Kube committed
        max-height: 50%;
        overflow: auto;
    
    .bottom-container-nav {
        height: 35px;
        width: 100%;
        top: 0;
        display: flex;
        flex-direction: row;
        cursor: pointer;
    }
    
    .bottom-container-links {
        width: 100%;
    
    Matthias Konitzny's avatar
    Matthias Konitzny committed
        font-size: 8px;
    
    Matthias Konitzny's avatar
    Matthias Konitzny committed
        max-width: 65px;
    
    .link-img {
        min-width: 70px;
        width: 70px;
        height: 70px;
        margin: 10px;
    
        pointer-events: all;
        cursor: pointer;
        border-radius: 50%;
    
        overflow: hidden;
        background-color: white;
        display: flex;
        align-items: center;
    
    }
    
    .bottom-container-nav-tab {
        height: 100%;
        display: flex;
        padding: 0 8px;
        min-width: 10%;
        text-align: center;
        line-height: 35px;
    
        font-size: 0.7vw;
    
    /*New Section */
    
    .neighbor-collapsible-title {
        background-color: #ffffff;
        color: #444;
        cursor: pointer;
        padding-top: 9px;
        padding-bottom: 9px;
        padding-right: 9px;
        padding-left: 0;
        width: 100%;
        display: flex;
        font-weight: bold;
        text-align: left;
        font-size: 20px;
        opacity: 100%;
        border: 2px solid white;
        outline: none;
        flex-direction: column;
        position: relative;
    }
    
    .neighbor-collapsible-section {
    
        background-color: #ffffff;
    
        color: #444;
        cursor: pointer;
    
    Harm Kube's avatar
    Harm Kube committed
        padding-top: 9px;
        padding-bottom: 9px;
        padding-right: 9px;
    
    Harm Kube's avatar
    Harm Kube committed
        padding-left: 0;
    
        width: 100%;
    
        border: 2px solid white;
    
        text-align: left;
        outline: none;
        font-size: 15px;
        display: flex;
        flex-direction: column;
    
    Harm Kube's avatar
    Harm Kube committed
        position: relative;
    
        font-weight: bold;
    
    .activation-hover-title, .neighbor-collapsible-title:hover {
        background-color: #ccc;
    }
    
    .activation-hover-section, .neighbor-collapsible-section:hover {
    
        background-color: #ccc;
    }
    
    
    .neighbor-content-tabs {
    
        padding: 0 18px;
        display: none;
        overflow: hidden;
    
        background-color: #ffffff;
    
        flex-direction: column;
    
    .neighbor-content-linksection {
        padding-top: 0;
        padding-left: 5px;
    
    Harm Kube's avatar
    Harm Kube committed
        display: none;
    
    Harm Kube's avatar
    Harm Kube committed
        background-color: #ffffff;
        flex-direction: column;
    
        height: 0;
        transition: height 0.25s ease-out;
        overflow: hidden;
    
    .neighbor-content-link {
    
        cursor: pointer;
    
        font-size: 14px;
    }
    
    .activation-hover, .link-neighbor:hover {
    
        color: red;
    
    Harm Kube's avatar
    Harm Kube committed
    
    
    .neighbor-collapsible-marker-div {
    
    Harm Kube's avatar
    Harm Kube committed
        position: absolute;
        width: 100%;
        height: 2px;
        border: 1px solid red;
        bottom: 0;
        left: 0;
    }
    
    .neighbor-collapsible-open-status-marker {
    
        position: absolute;
        right: 20px;
        font-size: 26px;
        color: #595858;
        top: 2px;
        bottom: 2px;
    }
    
    
    .neighbor-tab-open-status-marker {
    
        position: absolute;
        right: 20px;
        font-size: 15px;
        color: #595858;
        top: 10px;
        bottom: 10px;
    }