-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
55 lines (49 loc) · 947 Bytes
/
index.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
.accordian_body {
max-width: 600px;
margin: 0em auto;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 2.8em 0em;
}
.faq {
width: 100%;
background-color: #4caf50;
border-radius: 8px;
margin: 0em 0em 1.4em;
padding: 0.7em 1.4em;
}
.faq .faq_header {
display: flex;
justify-content: space-between;
align-items: center;
}
.faq h3 {
font-size: 1.2em;
font-weight: bold;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
margin: 0em;
padding: 0em;
}
.faq p {
font-size: 1em;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
margin: 1em 0em 0em;
padding: 0em;
}
.faq .show_btn {
width: 24px;
height: 24px;
background-color: black;
outline: none;
box-shadow: none;
border: none;
color: white;
margin: 0em;
border-radius: 120px;
cursor: pointer;
}
.hidden {
display: none;
}