blob: 3645ed7658ab336e0edf2825f6167f1a3c10898b (
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
|
/* F.A.Q */
div { position: relative; }
input[type=checkbox] {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
}
h2 {
font-size: 30px;
font-weight: 400;
margin: 60px 0 10px 0;
}
label {
cursor: pointer;
}
label {
position: relative;
display: block;
padding-left: 30px;
}
label:before {
content: "";
position: absolute;
width: 0;
height: 0;
top: 50%;
left: 10px;
border-left: 8px solid black;
border-top: 8px solid transparent;
border-bottom: 8px solid transparent;
margin-top: -8px;
}
input[type=checkbox]:checked ~ h2 label:before {
border-left: 8px solid transparent;
border-top: 8px solid black;
border-right: 8px solid transparent;
margin-left: -4px;
margin-top: -4px
}
p {
max-height: 100;
overflow: hidden;
padding-left: 30px;
transition: max-height 0.4s ease;
font-family: 'Habibi', serif;
}
input[type=checkbox]:checked ~ h2 ~ p {
max-height: 80px;
}
|