summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/pages/experimental_separate_sign_up.scss
blob: 8b1ec1ced35f4881bdaa8c21f285abe9ce15f796 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
.signup-page {
  .page-wrap {
    background-color: $gray-light;
  }

  .gitlab-logo {
    width: 80px;
    height: 80px;
  }

  .signup-box-container {
    max-width: 900px;

    &.navless-container {
      // overriding .devise-layout-html.navless-container to support the sticky footer
      // without having a header on size xs
      @include media-breakpoint-down(xs) {
        padding: 65px $gl-padding; // height of footer
        padding-top: $gl-padding;
      }
    }
  }

  .signup-heading h2 {
    font-weight: $gl-font-weight-bold;

    @include media-breakpoint-down(md) {
      font-size: $gl-font-size-large;
    }
  }

  .signup-box {
    background-color: $white-light;
    box-shadow: 0 0 0 1px $border-color;
    border-radius: $border-radius;
  }

  .form-control {
    &:active,
    &:focus {
      background-color: $white-light;
    }
  }

  .devise-errors {
    h2 {
      font-size: $gl-font-size;
      color: $red-700;
    }
  }
}