Skip to content

Commit 96e16e6

Browse files
authored
📦 Updates
1 parent 1b29a31 commit 96e16e6

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
hr {
2+
width: 100%;
3+
border: 1px solid var(--background-color-3);
4+
background-color: var(--background-color-3);
5+
}
6+
7+
#contactForm {
8+
display: flex;
9+
flex-direction: column;
10+
justify-content: center;
11+
align-items: center;
12+
gap: 20px;
13+
width: 100%;
14+
}
15+
16+
#contactForm fieldset {
17+
padding: 10px;
18+
border-radius: 5px;
19+
position: relative;
20+
}
21+
22+
#contactForm fieldset legend {
23+
text-align: left;
24+
}
25+
26+
.contactFormField {
27+
width: 100%;
28+
padding: 12px;
29+
border: 1px solid #ccc;
30+
border-radius: 4px;
31+
box-sizing: border-box;
32+
margin-top: 6px;
33+
margin-bottom: 16px;
34+
resize: vertical;
35+
}
36+
37+
button[type=submit] {
38+
background-color: var(--background-color-3);
39+
cursor: pointer;
40+
color: #363636;
41+
padding: 12px 20px;
42+
border: none;
43+
border-radius: 4px;
44+
cursor: pointer;
45+
transition: all 0.3s ease;
46+
}
47+
48+
button[type=submit]:hover {
49+
opacity: 0.75;
50+
}

0 commit comments

Comments
 (0)