mmdnn/visualization/public/style.css [88:199]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
}

/* toggle switch */
#order{
    padding:7px;
}
.switch {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 20px;
    /* padding:2px 7px; */
    margin:0px 7px 2px 7px;
  }
  
  .switch input {display:none;}
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: var(--fg-color);
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px var(--fg-color);
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(35px);
    -ms-transform: translateX(35px);
    transform: translateX(35px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 17px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  .slider:after
  {
   content:'TB';
   color: white;
   display: block;
   position: absolute;
   transform: translate(-50%,-50%);
   top: 50%;
   left: 50%;
   font-size: 10px;
   font-family: Verdana, sans-serif;
  }
  
  input:checked + .slider:after
  {  
    content:'BT';
  }

/* the scroll bar */
/* Use -webkit- only if supporting: Chrome < 54, iOS < 9.3, Android < 4.4.4 */
/* .shadow {
    
    -webkit-filter: drop-shadow( -5px -5px 5px #000);
    filter: drop-shadow( -5px -5px 5px #000);
}*/

/*scroll bar*/

::-webkit-scrollbar {
    width: 6px;
}

/* Track */

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 6px;
    border-radius: 3px;
}

/* Handle */

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 6px;
    border-radius: 3px;
    background: var(--scroll-bar);
    opacity: 0.5;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.25);
}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



mmdnn/visualization/style.css [94:205]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
}

/* toggle switch */
#order{
    padding:7px;
}
.switch {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 20px;
    /* padding:2px 7px; */
    margin:0px 7px 2px 7px;
  }

  .switch input {display:none;}

  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }

  .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }

  input:checked + .slider {
    background-color: var(--fg-color);
  }

  input:focus + .slider {
    box-shadow: 0 0 1px var(--fg-color);
  }

  input:checked + .slider:before {
    -webkit-transform: translateX(35px);
    -ms-transform: translateX(35px);
    transform: translateX(35px);
  }

  /* Rounded sliders */
  .slider.round {
    border-radius: 17px;
  }

  .slider.round:before {
    border-radius: 50%;
  }
  .slider:after
  {
   content:'TB';
   color: white;
   display: block;
   position: absolute;
   transform: translate(-50%,-50%);
   top: 50%;
   left: 50%;
   font-size: 10px;
   font-family: Verdana, sans-serif;
  }

  input:checked + .slider:after
  {
    content:'BT';
  }

/* the scroll bar */
/* Use -webkit- only if supporting: Chrome < 54, iOS < 9.3, Android < 4.4.4 */
/* .shadow {

    -webkit-filter: drop-shadow( -5px -5px 5px #000);
    filter: drop-shadow( -5px -5px 5px #000);
}*/

/*scroll bar*/

::-webkit-scrollbar {
    width: 6px;
}

/* Track */

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 6px;
    border-radius: 3px;
}

/* Handle */

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 6px;
    border-radius: 3px;
    background: var(--scroll-bar);
    opacity: 0.5;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.25);
}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



