/* ---- W3SCHOOLS "HOW TO" TUTORIAL ---- */

/* -- Style of the labels -- */

.label {
    color: white;
    padding: 4px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
  }

  
.success {background-color: #4CAF50;} /* Green */
.phaser {background-color: rgb(20, 108, 180);} /* Blue */
.chartjs {background-color: #ff6384;} /* Blue */
.warning {background-color: #ff9800;} /* Orange */
.danger {background-color: #f44336;} /* Red */
.other {background-color: #e7e7e7; color: black;} /* Gray */
.javascript{background-color: #f2dd2d; color:black;}
.webservice{background-color: #f98113;}


/* -- Style the social icon bar -- */

.icon-bar {
    position: fixed;
    bottom: 5px;
    right: 5px;
}

.icon-bar a {
    display: block;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
}
  
.icon-bar a:hover {
    background-color: #000;
}
  
.facebook {
    background: #3B5998;
    color: white;
}
  
.twitter {
    background: #55ACEE;
    color: white;
}
  
.google {
    background: #dd4b39;
    color: white;
}
  
.linkedin {
    background: #007bb5;
    color: white;
}
  
.youtube {
    background: #bb0000;
    color: white;
}

.github {
      background: #24292e;
      color: white;
}

/* -- Draggable Div -- */

#mydiv {
    position: absolute;
    z-index: 9;
    background-color: #f1f1f1;
    border: 1px solid #d3d3d3;
    text-align: center;
  }
  
#mydivheader {
    padding: 10px;
    cursor: move;
    z-index: 10;
    background-color: #0768a0;
    color: #fff;
}