-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
37 lines (37 loc) · 713 Bytes
/
App.css
File metadata and controls
37 lines (37 loc) · 713 Bytes
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
.faq-item{
max-width: 800px;
overflow: hidden;
margin: 0 auto;
color: aliceblue;
background-color: #2aa4f6;
}
h2{
text-align: center;
color: aliceblue;
}
body{
font-family: 'Times New Roman', Times, serif;
background-color: #164c70;
}
.item-header{
background-color: #0195f7;
border-radius: 5px;
padding: 10px;
transition: background-color 0.5s ease;
cursor: pointer;
}
.item-header:hover{
background-color: #075cfa;
}
.item-body{
padding: 20px;
color: rgb(249, 245, 245);
max-height: 0px;
overflow: hidden;
transition: max-height 0.5s ease;
background-color: rgb(88, 146, 146);
}
.faq-item.active .item-body {
max-height: 200px;
transition: max-height 0.5s ease;
}