blob: 4681e684bffe4a7f4e0d5f973c160f057080137b (
plain) (
blame)
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
|
form {
width: 90%;
margin: auto;
max-width: 550px;
}
input,
form button,
label {
display: block;
}
form button,
input,
textarea {
outline: none;
}
input,
textarea {
border: 1px solid rgb(199, 199, 199);
border-radius: 10px;
padding: 10px;
font-size: 90%;
width: 100%;
height: 30px;
color: rgb(53, 53, 53);
}
textarea {
height: 50px;
}
label {
margin-top: 10px;
}
form button {
--accent: rgb(0, 162, 255);
margin-top: 20px;
}
.form-container {
width: 90%;
}
|