forked from vancouvercommunitynetwork/vcn-signup-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvcn-validation-style.css
45 lines (37 loc) · 914 Bytes
/
vcn-validation-style.css
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
input.error, select.error, textarea.error {
border: 1px red dotted;
}
label.error {
color: #F00;
font-family: sans-serif;
font-size: .8em;
-webkit-animation: fadein 2s; /* Safari and Chrome */
-moz-animation: fadein 2s; /* Firefox */
-ms-animation: fadein 2s; /* Internet Explorer */
-o-animation: fadein 2s; /* Opera */
animation: fadein 2s;
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Firefox */
@-moz-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Safari and Chrome */
@-webkit-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Internet Explorer */
@-ms-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}<200b>
/* Opera */
@-o-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}