Projekt

Obecné

Profil

Stáhnout (1.29 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
    .form-control {
28
      border-color: #F2F2F2;
29
      background-color: #F2F2F2;
30
    }
31
  }
32

    
33
  .input-group-prepend span {
34
    padding-right: 18px;
35
    padding-left: 18px;
36
    border-color: $terciary;
37
    color: #F2F2F2;
38
    background: $terciary;
39
  }
40

    
41
  .p-button {
42
    border-color: #F2F2F2;
43
    background: $terciary;
44

    
45
    @include hover-focus() {
46
      color: $terciary;
47
      border-color: #F2F2F2;
48
      background: #F2F2F2;
49
    }
50
  }
51
}
52

    
53
.login-logo {
54
  margin-bottom: $grid-gutter-width;
55
  border-radius: 10px 10px 0 0;
56
  text-align: center;
57
  background: #F2F2F2;
58

    
59
  img {
60
    width: 300px;
61
  }
62
}
63

    
64
.login-heading {
65
  text-align: center;
66
  font-size: $h3-font-size;
67
}
68

    
69
.login-copyright {
70
  displey: flex;
71
  align-items: center;
72
  position: absolute;
73
  bottom: 0;
74
  width: 100%;
75
  text-align: center;
76
  color: $white;
77
  background: $primary;
78

    
79
  p {
80
    margin-bottom: 0;
81
    padding: ($grid-gutter-width / 2) 0;
82
  }
83

    
84
  a {
85
    color: $white;
86
  }
87
}
(4-4/9)