blob: 2745cb4e8261a696182ce068bdce20ac174359f9 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
.accordion {
width: 1500px;
margin: 2rem auto;
}
.accordion__title {
display: flex;
flex-direction: row;
justify-content: space-between;
cursor: pointer;
background-color: #2c3e50;
color: #ecf0f1;
border-radius: 10px;
box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
}
.accordion__title:hover {
background-color: #17212b;
}
.accordion__title,
.accordion__content {
padding: 1rem;
}
.accordion__content {
display: flex;
justify-content: center;
background-color: #2c3e50;
border-radius: 10px;
margin: 10px 0px;
}
.accordion__demographic {
display: flex;
flex-direction: column;
width: 60%;
background-color: #ecf0f1;
border-radius: 10px;
margin-right: 10px;
padding: 20px;
}
.accordion__biometric {
width: 40%;
display: flex;
flex-direction: column;
}
.accordion__biometric_image {
border-radius: 6px;
}
.accordion__demographic div {
margin: 6px;
}
.accordion__demographic div span {
font-weight: 700;
}
|