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

login.scss « sections « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0e9a6a0a39224067b8ddffb1e6bf1c2d38f28ed9 (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
/* Login Page */
.login-page {
  h1 {
    font-size: 3em;
    font-weight: 200;
  }

  .login-box{
  }

  .brand-image {
    margin-bottom:  20px;
    img {
      max-width: 100%;
    }
  }

  .login-logo{
    margin: 10px 0 30px 0;
    display: block;
  }

  .form-control {
    background-color: #F5F5F5;
    font-size: 16px;
    padding: 14px 10px;
    width: 100%;
    height: auto;

    &.top {
      @include border-radius(5px 5px 0 0);
      margin-bottom: 0px;
    }

    &.bottom {
      @include border-radius(0 0 5px 5px);
      border-top: 0;
      margin-bottom: 20px;
    }

    &.middle {
      border-top: 0;
      margin-bottom:0px;
      @include border-radius(0);
    }

    &:active, &:focus {
      background-color: #FFF;
    }
  }

  .login-box a.forgot {
    float: right;
    padding-top: 6px
  }

  .devise-errors {
    h2 {
      font-size: 14px;
      color: #a00;
    }
  }
}