-
Notifications
You must be signed in to change notification settings - Fork 900
/
Copy pathfaq.css
58 lines (51 loc) · 1.01 KB
/
faq.css
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
body{
background:url(../assets//library.jpg) no-repeat center center/cover;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif
}
.faq{
width: 65%;
background-color: white;
padding: 30px;
border-radius: 15px;
}
.faq .faq-title{
margin-bottom: 15px;
text-align: center;
}
.question{
padding : 18px 0px;
font-size: 22px;
cursor: pointer;
border-bottom: 1px solid black;
position: relative;
}
.question::after{
content: '+';
position: absolute;
right: -5px;
}
.answer{
padding-top: 15px;
font-size: 22px;
line-height: 1.5;
width: 100%;
height: 0;
overflow: hidden;
}
.active .answer{
height: 200px;
}
.active .question{
font-size: 18px;
transition: 0.5s;
}
.active .question::after{
content: '-';
position: absolute;
right: -5px;
transition: .5s;
}