-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
42 lines (36 loc) · 884 Bytes
/
Copy pathcustom.css
File metadata and controls
42 lines (36 loc) · 884 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
.services-border {
border: 1px solid #eaeaea;
border-radius: 5px;
padding: 20px;
}
/* The message box is shown when the user clicks on the password field */
#message, #register_password_message, #register_confirm_password_message {
display:none;
background: #f9f9f9;
color: #000;
position: relative;
padding: 20px;
margin-top: 10px;
}
#message p, #register_password_message p, #register_confirm_password_message p {
padding: 5px 35px;
font-size: 18px;
}
/* Add a green text color and a checkmark when the requirements are right */
.valid {
color: green;
}
.valid:before {
position: relative;
left: -35px;
content: "✔";
}
/* Add a red text color and an "x" when the requirements are wrong */
.invalid {
color: red;
}
.invalid:before {
position: relative;
left: -35px;
content: "✖";
}