-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaqstyle.css
More file actions
75 lines (75 loc) · 1.36 KB
/
faqstyle.css
File metadata and controls
75 lines (75 loc) · 1.36 KB
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
70
71
72
73
74
75
.faq .row {
padding: 25px 20px;
border-bottom: 1px solid #f0f4f7;
cursor: pointer;
}
.faq-Q {
margin: 0;
color: #262a35;
position: relative;
font-size: 18px;
}
.faq-Q:before {
position: absolute;
top: 10px;
width: 10px;
height: 2px;
content: '';
transition: all 0.3s ease;
right: 21px;
transform: rotate(45deg);
background: #dde2e6;
}
.faq-Q:after {
position: absolute;
top: 10px;
width: 10px;
height: 2px;
content: '';
transition: all 0.3s ease;
right: 15px;
transform: rotate(-45deg);
background: #dde2e6;
}
.faq-D {
height: 0;
overflow: hidden;
transition: all 0.3s ease;
opacity: 0;
}
.faqOpen {
background: rgb(245, 245, 245);
border-radius: 9px;
}
.faqOpen .row {
border: 0;
padding: 25px 20px;
}
.faqOpen .faq-D {
margin-top: 15px;
height: inherit;
opacity: 1;
}
.faqOpen .faq-Q:before {
position: absolute;
top: 10px;
width: 16px;
height: 2px;
content: '';
right: 15px;
transform: rotate(45deg);
background: #00349a;
}
.faqOpen .faq-Q:after {
position: absolute;
top: 10px;
width: 16px;
height: 2px;
content: '';
right: 15px;
transform: rotate(-45deg);
background: #00349a;
}
.press {
margin: 50px 0 20px;
}