@font-face{
    font-family: "inconsolata";
    src: url("Inconsolata.ttf") format("truetype");
    font-weight: normal;
    font-style: normal
}

html, body{
    height: 100%;
    width: 100%;

    background-color: #444;
}

.codearea {
    background-color:#111;
    color:#fff;
    font-family: 'inconsolata', 'Consolas', 'Liberation Mono', 'DejaVu Sans Mono', monospace;
    font-size:120%;
    overflow:auto;
    
    height: 100%;
    width: 100%;
    padding: 5px;

    border: none;
    resize: none;
}

.main_container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: auto;
    align-content: start;
    
    height: 100%;
    width: 100%;
}
.item {
    flex: 0 1 auto;
    padding: 15px;
    height: 100%;
    width: 50%;
}

.card {
    background-color:#666;
}

.card_header_inner {
    display: inline-block;
    width: 50%;
    height: 100%;

    padding: .75rem 1.25rem;

}

.card_header_inner_value {
    border-left-style: solid;
    border-width: 2px;
}

.card_font {
    display: inline;
    color: white;
    text-decoration: none;
}

.card_header_text {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;

    width: 100%;

    text-overflow: ellipsis;

  /* Required for text-overflow to do anything */
  white-space: nowrap;
  overflow: hidden;
}

.card_content_root {
    padding: 0;
}

#obj_list_title {
    font-size: 20px;
    color: lightgray;
}


/* BOOTSTRAP OVERRIDE */

.card-header {
    padding: 0;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125);
}

.card-header:hover {
    cursor: pointer;
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 0;
    margin-top: 100px;
}