_oauth2.scss 1014 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
@import 'neat/neat'; // lib - Neat

.oauth2 {

  @include outer-container();

  .authorization-confirmation {

    @include span-columns(6);
    @include shift(3);

12
    float: unset !important;  // fixes issues with oauth page and edx-theme footer
13 14 15 16 17
    line-height: 1.5em;
    padding: 50px 0;

  }
}
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55

// For the django-oauth-toolkit Authorization view
.wrapper-authorize {
    background: $white;
    width: 60%;
    padding-right: 140px;
    padding-left: 140px;

    font-family: $sans-serif;

    h1 {
        @extend %t-title4;
        margin-bottom: 0;
        margin-left: 0;
        padding: $baseline;
        padding-left: 0px;
        @include text-align(left);
    }

    p {
      @extend %t-copy-base;
      margin: $baseline/2 0;
    }

    .control-group {
        float: right;
    }

    .btn-authorization-allow {
        @extend %btn-primary-blue;
        margin-left: 20px;
        line-height: 0.7em;
    }

    .btn-authorization-cancel {
        @extend %btn-secondary-blue-outline;
    }
}