-
Notifications
You must be signed in to change notification settings - Fork 3
/
faq.css
55 lines (49 loc) · 1005 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
@import url('https://fonts.googleapis.com/css?family=Rubik&display=swap');
*{
padding: 0;
margin: 0;
}
body,html{
background-image: url('images/bg3.jpg');
height: 100%;
margin: 0;
background-repeat: no-repeat;
background-size: 100vw 100vh;
background-position: center;
background-color: #A9EAFE;
}
.box{
width: 900px;
margin: 100px auto;
background: #fff;
border-radius: 7px;
box-shadow: 1px 2px 4px rgba(0,0,0,.3);
}
.box .heading{
background: #7800CF;
border-radius: 7px 7px 0px 0px;
padding: 10px;
color: #fff;
text-align: center;
font-family: "Rubik";
}
.faqs{
padding: 0px 20px 20px;
}
::-webkit-details-marker{
float: right;
margin-top: 3px;
}
details{
background: #f6f6f6;
padding: 10px 20px;
border-radius: 7px;
margin-top: 20px;
font-family: "Rubik";
font-size: 14px;
letter-spacing: 1px;
cursor: pointer;
}
details summary{
outline: none;
}