Skip to content

Commit a4deffe

Browse files
committed
Add CSS styling for Product Pick form
1 parent ce896eb commit a4deffe

1 file changed

Lines changed: 63 additions & 0 deletions

File tree

Form-Controls/style.css

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
body {
2+
margin: 0;
3+
padding: 10px;
4+
font-family: 'Segoe UI', sans-serif;
5+
display: flex;
6+
justify-content: center;
7+
}
8+
9+
.container {
10+
background-color: #bfbfbf;
11+
width: 500px;
12+
padding: 35px;
13+
font-size: 16px;
14+
border-radius: 10px;
15+
}
16+
17+
header {
18+
background: #4f46e5;
19+
color: white;
20+
padding: 15px 30px;
21+
display: flex;
22+
align-items: center;
23+
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
24+
}
25+
26+
header h1 {
27+
margin: 0;
28+
font-size: 20px;
29+
}
30+
31+
.field {
32+
background-color: #f1f1f1;
33+
padding: 10px;
34+
border: 2px solid white;
35+
display: flex;
36+
align-items: center;
37+
gap: 10px;
38+
margin-bottom: 5px;
39+
}
40+
41+
label {
42+
width: 150px;
43+
}
44+
45+
input,
46+
select {
47+
flex: 1;
48+
padding: 6px;
49+
}
50+
51+
.submit_field {
52+
text-align: right;
53+
margin-top: 10px;
54+
}
55+
56+
.submit_button {
57+
background-color: skyblue;
58+
padding: 10px 20px;
59+
border-radius: 8px;
60+
border: none;
61+
cursor: pointer;
62+
font-weight: bold;
63+
}

0 commit comments

Comments
 (0)