/*****************
 *** Custom CSS **
 *****************/

@media (max-width: 768px){
  #menu{
    flex: 0 1 auto;
    position: relative;
    top: 0px;
    width: 100% !important;
    height: 195px;
  }

  .quote{
    display: none;
  }

  #headshot{
    width: 100px;
    height: 100px;
  }

  #content{
    flex: 1 1 auto;
    position: relative;
    top: 0px;
    left: 0px !important;
    height: 50%;
    overflow: scroll;
  }

}

.header{
  font-family: "Josefin Sans", sans-serif;
  margin-top: 3px;
  margin-bottom: 0px;
}

.reveal{
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -webkit-transition: opacity 1s ease-in-out;
}

.revealBtn{
  display: block;
  margin-top: 50px;
}

.handwriting > .large{
  font-family: "Love Ya Like A Sister", cursive;
  font-size: x-large;
  text-align: center;
  padding: 5px;
}

.handwriting .regular{
  font-family: "Love Ya Like A Sister", cursive;
  font-size: large;
  text-align: center;
  padding: 5px;
}

.theme{
  font-family: "Josefin Sans", sans-serif;
  font-size: xx-large;
  padding: 5px;
  text-align: center;
}

.label-as-badge{
  border-radius: 1em !important;
  white-space: normal !important;
  margin: 1px;
}

.content{
  font-family: "Open Sans", sans-serif;
}

.projectImg{
  margin: 5px;
  max-width: 100%;
  height: auto;
  border-radius: 1em;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.18);
}


.button--silent{
  background-color: transparent;
  color: rgba(0, 0, 0, .4);
  border: none;
}

.button--light{
  color: #007FFF;
  border-color: #007FFF;
}

.button--incomplete{
  color: gray;
  border-color: gray;
}

.button--gray{
  color: gray;
}

.button--red{
  color: red;
}

.button--bOrange{
  background-color: #fec006;
  margin-top: 10px;
}

.button--bBlue{
  background-color: #00bbd3;
  margin-top: 10px;
}

.button--bGreen{
  background-color: #4BB74C;
}

.button--bRed{
  background-color: red;
  margin-top: 10px;
}

.button--bTeal{
  background-color: #008080;
}

ons-page.nobar > .page__content {
  overflow: visible;
}
ons-splitter-side[side="left"] {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.toolbar{
  margin-bottom: 10px;
}

.highlight {
  background-color: lightyellow;
  color: rgba(255, 0, 0, 0.7);
}

.left-label {
  width: 30%;
  font-size: 16px;
  color: #666
}

.menu-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: xx-large;
}

.quote {
  font-family: 'Poiret One', cursive;
  font-size: x-large;
}

.icon--middle{
  vertical-align: middle;
}

.green{
  color: green;
}

.red{
  color: red;
}

.gray{
  color: gray;
}

.small{
  font-size: 12px;
}

/********************
 *** Animation CSS ***
 ********************/

#tabbarPage .list {
  background-color: grey;
  overflow-x: hidden;
}

.hide-children * {
  overflow: hidden;
}

.animation-swipe-right {
  pointer-events: none;
  -webkit-animation: swipe-right .9s ease-in-out forwards;
          animation: swipe-right .9s ease-in-out forwards;
}

.animation-swipe-left {
  pointer-events: none;
  -webkit-animation: swipe-left .9s ease-in-out forwards;
          animation: swipe-left .9s ease-in-out forwards;
}

.animation-remove {
  pointer-events: none;
  -webkit-animation: remove .7s ease-in-out forwards;
          animation: remove .7s ease-in-out forwards;
}

@-webkit-keyframes swipe-right {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10% {
    -webkit-transform: translateX(-3%);
            transform: translateX(-3%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    height: 0;
    opacity: 0.3;
  }
}

@keyframes swipe-right {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10% {
    -webkit-transform: translateX(-3%);
            transform: translateX(-3%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    height: 0;
    opacity: 0.3;
  }
}

@-webkit-keyframes swipe-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10% {
    -webkit-transform: translateX(3%);
            transform: translateX(3%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    height: 0;
    opacity: 0.3;
  }
}

@keyframes swipe-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10% {
    -webkit-transform: translateX(3%);
            transform: translateX(3%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    height: 0;
    opacity: 0.3;
  }
}

@-webkit-keyframes remove {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.1;
    height: 0;
  }
}

@keyframes remove {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.1;
    height: 0;
  }
}
