-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
53 lines (53 loc) · 975 Bytes
/
style.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
*,
*:before,
*:after{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
background-color: rgba(4, 130, 248, 0.247);
}
.container{
width: 45%;
min-width: 500px;
position: absolute;
transform: translate(-50%,-50%);
top: 50%;
left: 50%;
}
.wrapper{
background-color: #fff;
margin-bottom: 20px;
padding: 15px 40px;
border-radius: 5px;
box-shadow: 0 15px 25px rgba(5, 0, 50, 0.2);
}
.toggle,
.content{
font-family: "Poppins",sans-serif;
}
.toggle{
width: 100%;
background-color: transparent;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 16px;
color: #111130;
font-weight: 500;
border: none;
outline: none;
cursor: pointer;
padding: 15px 0;
transition: 0.5s;
}
.content{
position: relative;
font-size: 14px;
text-align: justify;
line-height: 30px;
height: 0;
overflow: hidden;
transition: all 1s;
}