Welcome to mirror list, hosted at ThFree Co, Russian Federation.

registration.scss « stylesheets « assets « app - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6fd75546432572b2a3741c553a6d95773ec0889d (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
.page-registrations {
  .ball {
    background: image-url('branding/ball.png') no-repeat;
    background-size: contain;
    height: 633px;
    max-width: 100%;
  }

  .v-center {
    display: table;
    height: 633px;
  }

  @media (max-width: $screen-xs-max) {
    .v-center {
      height: auto;
    }
  }

  .content {
    display: table-cell;
    vertical-align: middle;

    h1 {
      font-size: 35px;
      margin: 12px 0;
    }
  }

  form {
    max-width: 500px;
  }

  .captcha-img {
    left: 10px;
    position: absolute;
    top: 169px;
    width: 120px;
  }

  .form-control.captcha-input {
    border-bottom: 1px solid $input-border;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    box-sizing: border-box;
    line-height: $line-height-base;
    padding-left: 130px;
  }

  .terms > a {
    color: inherit;
    text-decoration: underline;
  }
}