// Place all the styles related to the Songbooks controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: http://sass-lang.com/

.songbook-panel {
  min-height: 400px;
  height: 100%;
}

.songbook-title {
  font-size: 14pt;
  font-weight: bold;
}

#songbook-name {
  color: grey;
  display: inline-block;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 20px;
  vertical-align: middle;
  width: 400px;

  display: none;
}

.btn-file {
  position: relative;
  overflow: hidden;
}

.btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  background: white;
  cursor: inherit;
  display: block;
}

.file-label {
  color: grey;
  display: inline-block;
  padding: 4px 14px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
}

#rtf-editor {
  border: solid 1px #e3e3e3;
  min-height: 400px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.spinner {
  display: none;
  height: 100px;
  width: 100px;
  margin: 135px auto 0 auto;
  position: relative;
  -webkit-animation: rotation .8s infinite linear;
  -moz-animation: rotation .8s infinite linear;
  -o-animation: rotation .8s infinite linear;
  animation: rotation .8s infinite linear;
  border-left: 6px solid rgba(255, 0, 5, .15);
  border-right: 6px solid rgba(255, 0, 5, .15);
  border-bottom: 6px solid rgba(255, 0, 5, .15);
  border-top: 6px solid rgba(255, 0, 5, .8);
  border-radius: 100%;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}

@-moz-keyframes rotation {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}

@-o-keyframes rotation {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
