summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/pages/experimental_separate_sign_up.scss
blob: 415ff01bc33282e6761cf5cad053ebbff1672f80 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
.signup-page {
  .page-wrap {
    background-color: $gray-light;
  }

  .signup-box-container {
    max-width: 960px;
  }

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

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

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

  .omniauth-divider {
    &::before,
    &::after {
      content: '';
      flex: 1;
      border-bottom: 1px solid $gray-dark;
      margin: $gl-padding-24 0;
    }

    &::before {
      margin-right: $gl-padding;
    }

    &::after {
      margin-left: $gl-padding;
    }
  }

  .omniauth-btn {
    width: 48%;

    @include media-breakpoint-down(md) {
      width: 100%;
    }

    img {
      width: $default-icon-size;
      height: $default-icon-size;
    }
  }

  .decline-page {
    width: 350px;
  }
}