forked from stevencohn/OneMore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.css
119 lines (104 loc) · 2.09 KB
/
contact.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
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
108
109
110
111
112
113
114
115
116
117
118
119
label.error {
color: var(--error-color);
margin-left: 10px;
}
#contactName-error,
#contactEmail-error,
#contactMessage-error {
vertical-align: top;
font-size: 10pt;
color: #dc3545;
}
section.contact {
clear: both;
height: 320px;
background-color: linen;
padding: 40px 100px 0px 100px;
color: black;
/* height: 350px; */
font: normal normal normal 20px/1.4em Barlow-Regular, Barlow, sans-serif;
}
detail.contactLeft {
position: relative;
font-weight: bold;
color: #606060;
float: left;
width: 30%;
text-align: right;
margin-right: 20px;
}
detail.contactRight {
position: relative;
float: left;
font: var(--font-R13);
}
#contactForm input {
font: var(--font-B20R);
font-size: 16px;
width: 420px;
margin-bottom: 25px;
border-color: lightgray;
border-radius: 4px;
border-style: ridge;
border-width: 1px;
padding-left: 3px;
}
#contactForm #submit {
background-color: #8F20C7;
border-radius: 4px;
color: white;
font-size:11pt;
width: 80px;
}
#contactForm #submit:disabled {
background-color:#EBE5E1;
color:#808080;
}
#contactForm #submit:focus {
border-style: solid;
}
#contactForm input:focus:not(#submit),
#contactForm textarea:focus {
border-style: dashed;
border-color: darkgray;
outline: none;
}
#contactForm .label {
display: block;
font-size: .825rem;
margin-bottom: 5px;
font-weight: 500;
}
#contactForm CITE {
font-size: 10pt;
color: #595959;
}
#contactForm #honey {
width: 35px;
margin-right: 10px;
text-align: center;
}
#contactForm #honey-error {
display: none !important;
visibility: collapse;
}
#contactForm textarea {
font: var(--font-B20R);
font-size: 16px;
border-radius: 4px;
width: 60%;
height: 100px;
max-width: 80%;
min-width: 420px;
max-height: 400px;
min-height: 100px;
margin-bottom: 15px;
border-color: lightgray;
border-width: 1px;
border-style: ridge;
padding-left: 3px;
resize: both;
}
#contactForm #honeyp {
visibility: collapse;
}