/*
Project: 15-16_18
Activity: 4 - Evaluation
Author: Huw Jones
Palette: Color: Primary Colour: rgba(23, 190, 187, 1) , Secondary Colour: rgba(240, 166, 202, 1)
*/





/* Activity Content */

.table{
    margin-top:30px;
    margin-bottom:30px;
}

th{
    background-color: rgba(23, 190, 187, 1);
    color:white;
    font-size: large;
}

td{
    background-color:white;
    font-size:medium;
    cursor:pointer;
}


/* Tablet */
@media(min-width: 768px){



}

/* Desktop */
@media(min-width:992px){



}

/* Large Desktop */
@media(min-width:1200px){



}

/* Mobile Only */
@media all and (max-width:767px) {

  .btn-change {
    display: block;
    margin-bottom: 3px;
    width: 100%;
  }

}

/* Print Stylesheet */
@media print {
  /*Need to override bootstrap print settings of background-color:#fff */  
  .table td.success{
      background-color: #dff0d8 !important;
  }
    
  .table td.danger{
      background-color: #f2dede !important;
  }
    
  .table th{
    background-color: rgba(23, 190, 187, 1) !important;
    color:white !important;
  }

  #header, #penToolOptions {
    display: none;
    visibility: hidden;
  }
  

}

