-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforms.css
57 lines (44 loc) · 1.21 KB
/
forms.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
45
46
47
48
49
50
51
52
53
54
55
56
/* start reCAPTCHA styles */
form>div {
margin:1em;
}
/* keeps form from bunching up to left */
@media all and (min-width:501px){
div.wrapper form{
margin-left:22.8px;
}
}
/* writes to small text above reCAPTCHA upon failure */
.dateFeedback{
font-style:italic;
font-size:70%;
font-weight:bold;
color:#f00;
}
input:required {
border: 1px solid rgb(124, 14, 138);
height: 20px;
border-radius: 5px;
}
input:optional, textarea:optional {
background-color:#f1f1f1;
border:1px solid rgb(103, 116, 235);
border-radius: 5px;
}
input[type="submit"], input[type="button"] {
background-color: rgb(240, 182, 182);
border-radius: 4px;
border: solid 1px #ccc;
padding: 0.4em 0.6em;
}
fieldset {
border: 1px solid #ccc;
max-width: 350px;
}
legend {
margin-left: 0.5em;
padding: 0.2em 0.5em;
border-left: 1px solid #ccc;
border-right: 1px solid #ccc;
}
/* end reCAPTCHA styles */