style.css 2.82 KB
body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
}

.chart-container {
    float: left;
    position: relative;
    display: inline-block;
    top: 10px;
    left: 0px;
    height: 1100px;
    width: 50%;
    overflow: hidden;
    text-align: center;
}

.orgchart {
    background: #fff;
    border: 0;
    padding: 0;
}

.orgchart > .spinner {
    color: rgba(255, 255, 0, 0.75);
}

.orgchart .node {
    box-sizing: border-box;
    display: inline-block;
    position: relative;
    margin: 0;
    border: 2px dashed transparent;
    text-align: center;
    width: 220px;
    padding-bottom: 0px;
    border-bottom-width: 0px;
    padding-top: 0px;
    height: 50px;
    border-top-width: 0px;
}

.orgchart .node .title {
    background-color: #fff;
    color: #000;
    height: 50px;
    border-radius: 0;
}

.orgchart .node .node-line-right {
    /*background-color: #fff;*/
    z-index: 1;
    position: absolute;
    top: -10px;
    right: 56px;
    width: 60px;
}

.orgchart .edge {
    display: none !important;
}

/*.orgchart.r2l .node .title {*/
/*transform: rotate(-90deg) translate(60px, 60px);*/
/*-ms-transform: rotate(-90deg) translate(60px, 60px);*/
/*-moz-transform: rotate(-90deg) translate(60px, 60px);*/
/*-webkit-transform: rotate(-90deg) translate(60px, 60px);*/
/*}*/

/*.orgchart.l2r .node .title {*/
/*transform: rotate(-90deg) translate(60px, 60px) rotateY(180deg);*/
/*-ms-transform: rotate(-90deg) translate(60px, 60px) rotateY(180deg);*/
/*-moz-transform: rotate(-90deg) translate(60px, 60px) rotateY(180deg);*/
/*-webkit-transform: rotate(-90deg) translate(60px, 60px) rotateY(180deg);*/
/*}*/

.orgchart .node .content {
    border: 0;
    background-color: transparent;
    color: #fff;
    font-weight: bold;
    font-size: 1.2em;
    position: absolute;
    bottom: 2px;
    z-index: 0;
    width: 178px;
    left: 19px;
}

.orgchart.t2b .node .content {
    position: absolute;
    bottom: 138px;
    right: 78px;
    width: 20px;
    border-radius: 0px;
}

.orgchart .node > .spinner {
    color: rgba(184, 0, 54, 0.75);
}

.orgchart table > tr {
    line-height: 0px;
}

.orgchart .node:hover {
    background-color: rgba(255, 255, 0, 0.6);
}

.orgchart .node.focused {
    background-color: rgba(255, 255, 0, 0.6);
}

.orgchart .node .edge {
    color: rgba(0, 0, 0, 0.6);
}

.orgchart .lines .downLine{
    background-color: rgba(17, 6, 6, 0.6);
}

.orgchart .lines .rightLine{
    border-right-color: rgba(17, 6, 6, 0.6);
}

.orgchart .lines .leftLine{
    border-left-color: rgba(17, 6, 6, 0.6);
}

.orgchart .lines .topLine{
    border-top-color: rgba(17, 6, 6, 0.6);;
}

.orgchart .edge:hover {
    color: #000;
}

.orgchart td.left,
.orgchart td.top,
.orgchart td.right {
    border-color: #999;
}

.orgchart td > .down {
    background-color: #999;
}