#code-snippet-wrapper {
  @include clearfix;
  @include display-flex;
  margin-bottom: 40px;
  width: 100%;
  * {
    -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
  }
  .paste-code-section {
    .pasted-code { display: none; }
    &.code-pasted {
      .no-code { display: none; }
      .pasted-code { display: inline-block; }
    }
    @include purple-gradient;
    color: #fff;
    padding: 30px;
    width: 60%;
    display: inline-block;
    h2 { color: #fff; }
    textarea {
      margin-top: 8px;
      background: #4b4b5e;
      border: none;
      border-radius: 3px;
      resize: none;
      width: 100%;
      height: 87px;
      padding: 12px;

      color: #fff;
      font-size: 12px;
      font-family: Monaco, Consolas, monospace;
    }
    .submit {
      text-align: right;
      padding: 0;
    }
    input[type="submit"] { cursor: pointer; }
  }
  .pasted-code {
    text-align: center;
    h2 { margin-bottom: 30px; }
  }
  #quick-launch-blocks {
    @include display-flex;
    margin-bottom: 30px;
  }
  .quick-launch-block {
    float: left;
    display: block;

    text-decoration: none;
    width: 24%;
    margin-left: 1.33%;
    padding: 30px 20px 10px 20px;
    background: $dark-steel;
    @include transition(background 0.15);
    &:first-child { margin-left: 0; }
    img {
      width: 24px;
      margin-bottom: 10px;
    }
    &:hover { background: shade($dark-steel, 15%); }
    &:last-child {
      img {
        margin-bottom: 13px;
      }
    }
  }
  .notification { margin-bottom: 0; }
  .signup-section {
    background: #fff;
    padding: 30px;
    width: 40%;
    @include display-flex;;
    @include align-items(center);
    @include flex-direction(column);
    @include justify-content(center);
    text-align: center;
    small {
      display: block;
      padding-top: 30px;
    }
    small a { color: $sky-blue; }
    .btn { margin: 10px auto; }
  }
  h2 {
    font-size: 24px;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 10px;
  }
  p {
    font-size: 16px;
    margin-top: 0;
  }
  small { font-size: 12px; }
  small a {
    color: #fff;
    text-decoration: none;
  }
}
