Projekt

Obecné

Profil

Stáhnout (1.45 KB) Statistiky
| Větev: | Tag: | Revize:
1
.login {
2
  height: 100%;
3
  color: $white;
4

    
5
  .container {
6
    height: 100%;
7
    align-content: center;
8
  }
9

    
10
  h1 {
11
    margin: 0;
12
    font-size: 0;
13
  }
14

    
15
  .card-header {
16
    padding: 0;
17
  }
18

    
19
  .card {
20
    @include size(400px,380px);
21
    margin-top: auto;
22
    margin-bottom: auto;
23
    border-radius: 10px;
24
    background: $primary;
25
    border: 2px solid $primary;
26

    
27
    @include media-breakpoint-down(xs) {
28
      @include size(auto,350px);
29
    }
30

    
31
    .form-control {
32
      border-color: #F2F2F2;
33
      background-color: #F2F2F2;
34
    }
35
  }
36

    
37
  .input-group-prepend span {
38
    padding-right: 18px;
39
    padding-left: 18px;
40
    border-color: $terciary;
41
    color: #F2F2F2;
42
    background: $terciary;
43
  }
44

    
45
  .p-button {
46
    border-color: #F2F2F2;
47
    background: $terciary;
48

    
49
    @include hover-focus() {
50
      color: $terciary;
51
      border-color: #F2F2F2;
52
      background: #F2F2F2;
53
    }
54
  }
55
}
56

    
57
.login-logo {
58
  margin-bottom: $grid-gutter-width;
59
  border-radius: 10px 10px 0 0;
60
  text-align: center;
61
  background: #F2F2F2;
62

    
63
  img {
64
    width: 300px;
65

    
66
    @include media-breakpoint-down(xs) {
67
      width: 280px;
68
    }
69
  }
70
}
71

    
72
.login-heading {
73
  text-align: center;
74
  font-size: $h3-font-size;
75
}
76

    
77
.login-copyright {
78
  displey: flex;
79
  align-items: center;
80
  position: absolute;
81
  bottom: 0;
82
  width: 100%;
83
  margin-top: 50px;
84
  text-align: center;
85
  color: $white;
86
  background: $primary;
87

    
88
  p {
89
    margin-bottom: 0;
90
    padding: ($grid-gutter-width / 2) 0;
91
  }
92

    
93
  a {
94
    color: $white;
95
  }
96
}
(4-4/9)