Update style.css
Browse files
style.css
CHANGED
@@ -30,11 +30,20 @@ label {
|
|
30 |
font-weight: bold;
|
31 |
}
|
32 |
|
|
|
33 |
textarea {
|
34 |
width: 100%;
|
35 |
padding: 0.5rem;
|
36 |
border: 1px solid #ccc;
|
37 |
border-radius: 4px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
resize: vertical;
|
39 |
}
|
40 |
|
@@ -67,8 +76,9 @@ button:focus-visible {
|
|
67 |
}
|
68 |
|
69 |
@media (max-width: 480px) {
|
70 |
-
button
|
|
|
|
|
71 |
width: 100%;
|
72 |
}
|
73 |
-
}
|
74 |
-
```
|
|
|
30 |
font-weight: bold;
|
31 |
}
|
32 |
|
33 |
+
select,
|
34 |
textarea {
|
35 |
width: 100%;
|
36 |
padding: 0.5rem;
|
37 |
border: 1px solid #ccc;
|
38 |
border-radius: 4px;
|
39 |
+
box-sizing: border-box;
|
40 |
+
}
|
41 |
+
|
42 |
+
select {
|
43 |
+
margin-bottom: 1rem;
|
44 |
+
}
|
45 |
+
|
46 |
+
textarea {
|
47 |
resize: vertical;
|
48 |
}
|
49 |
|
|
|
76 |
}
|
77 |
|
78 |
@media (max-width: 480px) {
|
79 |
+
button,
|
80 |
+
select,
|
81 |
+
textarea {
|
82 |
width: 100%;
|
83 |
}
|
84 |
+
}
|
|