/*
Project: 15-16_18
Activity: Unit 7: Precis Skills
Author: Richy Thomas
Palette: Color: Primary Colour: #606C88 , Secondary Colour: #3F4C6B
*/

.section{
  display: none;
}

textarea {
  height: auto;
}

.textSource, #textEditArea {
  background: #FFF;
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 20px;
}


/* Tablet */
@media(min-width: 768px){

  #textEditArea{
    height: 560px;
    max-height: 100%;
    resize: vertical;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

}

/* Desktop */
@media(min-width:992px){



}

/* Large Desktop */
@media(min-width:1200px){



}


@media print {

  .btn {
    display: none;
  }

}