_index.css
2.08 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
@import "config";
.passport-page {
width: 100%;
margin-left: auto;
margin-right: auto;
.input {
height: $item-height;
font-size: 16px;
line-height: 1.2;
line-height: @height;
width: 268px;
border: 1px solid #dbdbdb;
text-indent: 10px;
color: #9a9a9a;
color: rgba(0, 0, 0, 0.5);
}
.title {
font-size: 20px;
text-align: center;
width: $item-width;
color: $theme-color;
font-weight: bold;
}
.pwd-intensity-container {
width: 270px;
text-align: right;
padding-top: 5px;
&.red {
.pwd-intensity {
color: $red;
}
.color {
background: $red;
color: #fff;
}
}
&.yellow {
.pwd-intensity {
color: #f6da1e;
}
.color {
background: #f6da1e;
color: #fff;
}
}
&.green {
.pwd-intensity {
color: #3ee392;
}
.color {
background: #3ee392;
color: #fff;
}
}
.pwd-intensity {
height: 15px;
font-size: 12px;
background-color: #e8e8e8;
padding: 0 10px;
text-align: center;
color: #b9b9b9;
}
}
.email-autocomplete {
position: absolute;
width: 225px;
top: calc($item-height + 3px);
padding: 0 10px;
z-index: 1;
margin-top: 5px;
border-radius: 5px;
cursor: pointer;
border: 1px solid #fefefe;
background-color: $theme-color;
color: white;
font-size: 18px;
li {
padding-top: 10px;
height: 10px;
line-height: @height;
}
}
.focus {
border: 2px solid #000 !important;
}
}
@import "login";
@import "register";
@import "back";
@import "welcome";
@import "relate";
@import "third";