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
61
62
63
64
65
66
67
68
69
.envelop_section {
margin-bottom: 10px;
}
.custom_alert {
display: none;
cursor: pointer;
margin-bottom: 15px;
}
#cash_envelops {
margin-top: 30px;
}
#ch_envelops {
margin-top: 30px;
}
/* Accordion style */
/* Style the buttons that are used to open and close the accordion panel */
.accordion {
background-color: #dee2e6;
color: #212529;
cursor: pointer;
padding: 18px;
/* width: 80%; */
text-align: left;
border: none;
outline: none;
transition: 0.4s;
}
.archive_button {
padding: 18px;
/* width: 20%; */
}
hr {
margin-top: 32px;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
background-color: #acb3c2;
}
/* Style the accordion panel. Note: hidden by default */
.panel {
padding: 0 30px;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}
.accordion:after {
content: '\02795'; /* Unicode character for "plus" sign (+) */
font-size: 13px;
color: #777;
float: right;
margin-left: 5px;
}
.active:after {
content: "\2796"; /* Unicode character for "minus" sign (-) */
}
.panel.active:after {
margin-bottom: 30px;
}