<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
.wrapper {
    display: flex;
    width: 100%;
    //align-items: stretch;
    font-weight:200;
    font-family: 'Hind', sans-serif;
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    //background: #7386D5;
    //color: #fff;
    padding:20px 10px;
    padding-left:25px;
    transition: all 0.3s;
    font-family: 'Hind', sans-serif;
}

#sidebar.active {
    margin-left: -250px;
}

#sidebar .sidebar-header {
    padding: 15px;
    //background: #6d7fcc;
}

#sidebar ul.components {
    padding: 20px 10px;
    //border-bottom: 1px solid #47748b;
    font-family: 'Hind', sans-serif;
}
/*
#sidebar ul p {
    //color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}

#sidebar ul li a:hover {
    //color: #7386D5;
    //background: #fff;
}

#sidebar ul li.active&gt;a,
a[aria-expanded="true"] {
    //color: #fff;
    //background: #6d7fcc;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    //background: #6d7fcc;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

a.download {
    background: #fff;
    color: #7386D5;
}

a.article,
a.article:hover {
    //background: #6d7fcc !important;
    //color: #fff !important;
}
*/
/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

.container {
    width: 100%;
    padding-top: 20px;
    min-height: 100vh-2%;
    transition: all 0.3s;
    padding-left:0;
    padding-right:0;
}

.app {
  padding-top: 0px;
  height: 500px;
  width: 100%;
  font-weight:200;
  font-size: .675rem;
}

.app #code {
  height: 100%;
}
.app #code &gt; div {
  height: 100%;
}
.app #code &gt; div .CodeMirror {
  height: 100%;
  padding-top: 0;//15px;
  padding-left: 15px;
  padding-right: 15px;//15px;
}
.app #code &gt; div .CodeMirror .CodeMirror-scroll {
  padding-bottom: 0px;
}

.app #code &gt; div .CodeMirror-gutter-elt {
  white-space:nowrap;
  //left: -10px !important;
  //width:20px;
}
         
#proj-selection {
  position: relative;
  margin-left:5px;
}      
#proj-selection li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#proj-selection i{
  padding-right: 10px;
}

#lib-selection {
  margin-left:5px;
  position: relative;
}      
#lib-selection li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#lib-selection i{
  padding-right: 10px;
}

#logDiv {
  overflow-y:scroll; 
  overflow-x:hidden;
  white-space: wrap;     
  height:200px;
  background:#373a3c;
  font-size: 0.75em;
  color:white; 
}

.c-title {
  font-weight: bold;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #sidebarCollapse span {
        display: none;
    }
}</pre></body></html>