Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
getfitter-elements / app / assets / stylesheets / _layout.scss
Size: Mime:
div.outer-container {
  @include outer-container();
}

#page-container {
  @include span-columns(8 of 10);
  @include shift(1);
}

/*
  Specific style for "utility" boxes; those without the main layout.
*/
main.utility {
  width: 90%;
  max-width: 330px;
  margin: 3em auto;

  header {
    height: 90px;
    margin: 0 auto;

    text-align: center;
    color: $fitter-red;

    .slim-joe {
      font-family: 'slimjoe';
    }

    .big-john {
      font-family: 'bigjohn';
    }
  }

  section {
    background: $light-gray;
    border: 1px solid #D8D8D8;
    padding: 15px;
    margin-bottom: 1em;

    h2 {
      padding-bottom: 15px;
      font-size: 16px;
      font-weight: 500;
      line-height: 21px;
      text-align: center;
      margin-bottom: 17px;
      border-bottom: 1px solid $medium-gray;
    }

    .remember {
      float: left;
      margin-bottom: 14px;
      line-height: 12px;
      
      label {
        color: #777;
        font-size: 12px;
        font-weight: 600;
      }

      input {
        margin: 0;
        margin-right: 5px;
      }
    }

    .forgot {
      float: right;
      margin-bottom: 14px;
      line-height: 12px;

      a {
        text-decoration: none;
        font-size: 12px;
        font-weight: 600;
      }
    }

    .main-action {
      width: 100%;
    }
  }

  footer {
    margin-top: 20px;

    .secondary-action {
      width: 100%;
  
      font-size: 14px;    
      font-weight: 600;
    }
  }
}