forked from modularcode/modular-admin-html
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauth.scss
More file actions
72 lines (62 loc) · 971 Bytes
/
auth.scss
File metadata and controls
72 lines (62 loc) · 971 Bytes
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
64
65
66
67
68
69
70
71
72
.auth {
position: absolute;
width: 100%;
height: 100%;
left: 0;
background-color: #667380;
overflow-x: hidden;
overflow-y: auto;
}
.auth-container {
width: 450px;
min-height: 330px;
position: absolute;
top: 50%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
.auth-header {
//background-color: $color-primary;
text-align: center;
border-bottom: 1px solid $color-primary;
}
.auth-title {
color: #97A4B1;
padding: 20px;
line-height: 30px;
font-size: 26px;
font-weight: 600;
margin: 0;
}
.auth-content {
padding: 30px 50px;
min-height: 260px;
}
.forgot-btn {
line-height: 28px;
}
.checkbox {
label {
padding: 0;
}
a {
vertical-align: text-top;
}
span {
color: #4f5f6f;
}
}
}
@include media-down(sm) {
.auth-container {
width: 100%;
position: relative;
left: 0;
top: 0;
transform: inherit;
margin: 0;
margin-bottom: 10px;
.auth-content {
padding: 30px 25px;
}
}
}