forked from nisha331/flow_cycle1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
faq.css
63 lines (53 loc) · 965 Bytes
/
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
59
60
61
62
63
body{
background: url("backgrounddropdown.png");
}
.heading{
text-align:center;
font-family: 'Times New Roman', Times, serif;
font-size:60px;
margin-top:150px;
}
.information{
border-color:black;
border-style:solid;
display:flex;
margin:90px;
height:auto;
}
.info{
margin:20px;
font-size:20px;
}
.faq{
margin-top: 2rem;
padding-bottom: 0.1rem;
border-bottom: 2px solid black;
cursor: pointer;
}
.question{
display: flex;
justify-content: space-between;
align-items: center;
font-weight: bold;
}
.answer{
max-height: 0;
padding-top: 1.6rem;
line-height: 1.6;
overflow: hidden;
transition: max-height 0.5s ease-out;
}
.active .answer{
max-height: 500px;
overflow: hidden;
transition: max-height 1s ease-in;
}
#periods{
font-size: 1.5em;
font-weight: bold;
}
#pregnancy{
font-size: 1.5em;
font-weight: bold;
margin-top: 88px;
}