1
|
.login {
|
2
|
height: calc(100% - 45px);
|
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
|
|
46
|
.login-form-wrapper {
|
47
|
display: flex;
|
48
|
align-items: center;
|
49
|
justify-content: center;
|
50
|
height: 100%;
|
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
|
@include media-breakpoint-down(xs) {
|
63
|
width: 280px;
|
64
|
}
|
65
|
}
|
66
|
}
|
67
|
|
68
|
.login-heading {
|
69
|
text-align: center;
|
70
|
font-size: $h3-font-size;
|
71
|
}
|
72
|
|
73
|
.login-copyright {
|
74
|
displey: flex;
|
75
|
align-items: center;
|
76
|
position: absolute;
|
77
|
bottom: 0;
|
78
|
width: 100%;
|
79
|
margin-top: 50px;
|
80
|
text-align: center;
|
81
|
color: $white;
|
82
|
background: $primary;
|
83
|
|
84
|
p {
|
85
|
margin-bottom: 0;
|
86
|
padding: ($grid-gutter-width / 2) 0;
|
87
|
}
|
88
|
|
89
|
a {
|
90
|
color: $white;
|
91
|
}
|
92
|
}
|