Skip to content
Snippets Groups Projects
style.css 4.53 KiB
/* button and sidenav - fs */
  .fs-label {
    position: fixed;
    left: 0px;
    margin-left: -2px;
    top: 55px;
    z-index: 100;
    width: 40px;
    height: 33px;
    background: #222222;
    border: 1px #a1a1a1;
    border-radius: 3px;
    transition: 0.5s;
  }
  .fs-label .glyphicon-chevron-right {
    color: #eeeeee;
    font-size: 20px;
  }
  .fs-label.is-open .glyphicon-chevron-right {
    -webkit-transform: rotate(180deg);
    top: 3px;
  }
  .fs-label.is-closed .glyphicon-chevron-right {
    top: 1px;
  }

  #mySidenavfs {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 150; /* Stay on top */
    top: 45px;
    left: 0;
    background-color: #eeeeee; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
  }

/* input file button */
  .btn-bs-file{
    position:relative;
    margin-left: 10px;
  }
  .btn-bs-file input[type="file"]{
    position: absolute;
    top: -9999999;
    filter: alpha(opacity=0);
    opacity: 0;
    width:0;
    height:0;
    outline: none;
    cursor: inherit;
  }  

/* Tree */
  .tree, .tree ul {
    margin:0;
    padding:0;
    list-style:none
  }
  .tree ul {
    margin-left:1em;
    position:relative
  }
  .tree ul ul {
    margin-left:.5em
  }
  .tree ul:before {
    content:"";
    display:block;
    width:0;
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    border-left:1px solid
  }
  .tree li {
    margin:0;
    padding:0 1em;
    line-height:2em;
    color:#000;
    font-weight:700;
    position:relative
  }
  .tree ul li:before {
    content:"";
    display:block;
    width:10px;
    height:0;
    border-top:1px solid;
    margin-top:-1px;
    position:absolute;
    top:1em;
    left:0
  }
  .tree ul li:last-child:before {
    background:transparent;
    height:auto;
    top:1em;
    bottom:0
  }
  .indicator {
    margin-right:5px;
  }
  .tree li button, .tree li button:active, .tree li button:focus {
    text-decoration: none;
    color:#000;
    border:none;
    background:transparent;
    margin:0px 0px 0px 0px;
    padding:0px 0px 0px 0px;
    outline: 0;
  }

/* More layout */
  body {
    padding-top: 25px;
    position: relative;
    overflow-x: hidden;
    height: 100%;
  }
  footer {
    background-color: #111;
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 500;
  }
  h3 {
    margin-left: 10px;
  }
  h2 {
    margin-top: -5px;
    font-size: 24px;
    font-weight: bold;
  }
  h6 {
    font-weight: bold;
    margin-bottom: -10px;
  }
  a:link {
    text-decoration: none;
  }

  a:visited {
      text-decoration: none;
  }

  a:hover {
      text-decoration: none;
  }

  a:active {
      text-decoration: none;
  }
  .navbar {
    margin-bottom: -20pt;
    border-radius: 0;
    z-index: 200;
  }
  .droppable.dragover { /* Options for drag&drop pannel*/
    background: #a1a1a1;
  }
  #mappa-pannel, #chart-pannel {
    min-height: 450px;
    max-height: 750px;
  }
  #mappa-pannel canvas{
    max-height: inherit;
    max-width: 100%;
  }
  .fa{ /* spinner */
    position: absolute;
    z-index: 999;
    margin-top: 100px;
  }
  #pannelSettings {
    height: 100%;
    text-align: center;
  }
  .DropMenu {
    background-color: #333333;
    font-size: 14px;
    color: white;
  }
  #spinBoxMin {
    width: 100px;
    height: 30px;
    float: left;
    margin-left: 10px;
  }
  #spinBoxMax {
    width: 100px;
    height: 30px;
    float: right;
    margin-right: 10px;
  }
<<<<<<< HEAD


/* spinner */
.fa{
  position: absolute;
  z-index: 999;
  margin-top: 300px;
}
=======
  .panel-default {
    background-color: transparent;
    height: 50px;
    width: 140px;
    float: left;
  }
  .panel-body {
    margin-top: -8px;
    font-size: 12px;
    font-weight: bold;
  }
  .glyphicon-save{
    float: right;
    margin-top: -35px;
    margin-right: 60px;
    color: black;
  }
  .glyphicon-cog{
    float: right;
    margin-top: -35px;
    cursor: pointer;
    color: black;
  }
  .glyphicon-refresh{
    float: right;
    margin-top: -35px;
    cursor: pointer;
    margin-right: 30px;
    color: black;
  }
  #selectionCanvas{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }
>>>>>>> ModificheAspettoGrafico