blob: 6fbe371c635cc23216862e6363c6e9f25bdbb526 (
plain)
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
|
.formone {
display: flex;
flex-direction: column;
align-items: center;
font-family: 'Barlow';
font-size: var(--font-medium-s);
}
.formone__radio {
display: flex;
align-items: center;
}
.formone__resident {
display: flex;
align-items: center;
margin: 15px;
}
.formone__resident input[type='radio'] {
width: 1.5rem;
height: 1.5rem;
}
.formone__fullname {
display: flex;
flex-direction: column;
}
#fullName {
margin: 10px;
padding: 20px 10px;
}
|