-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
95 lines (88 loc) · 1.57 KB
/
styles.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
html{
min-height: 100vh;
min-width: 40vw;
}
body{
display: flex;
flex-direction: column;
background : linear-gradient(to top, hsl(240, 73%, 65%) , hsl(273, 75%, 66%));
background-repeat: no-repeat;
font-family: 'Kumbh Sans',sans-serif;
font-size: 12px;
align-items: center;
justify-content: center;
}
.container{
overflow: hidden;
box-sizing: border-box;
display: flex;
flex-direction: row;
background-color: #ffff;
margin-top: 8%;
padding-top: 5%;
padding-bottom: 5%;
padding-right: 5%;
border-radius: 20px;
}
.box{
display: flex;
position:fixed;
margin-top: 10%;
margin: 140px 0px 0px -15px;
}
.bg-image{
width: 10%;
height: 10%;
position: absolute;
margin: -350px 100px 100px -500px;
left: 0px;
top: 0px;
}
.image{
display: flex;
position: relative;
flex-direction: column;
margin: -10px 80px 0px -80px;
}
.faq-sec{
font-size: 18px;
}
.faq-head{
font-size:28px;
font-weight: 700;
}
.q-container{
display: flex;
flex-direction: row;
justify-content: space-between;
font-weight: 300;
}
.button{
max-height: 2vh;
max-width: 2vw;
margin-top: 10px;
margin-bottom: 10px;
margin-left: 50px;
}
.button:active{
-webkit-transform: scaleY(-1);
transform: scaleY(-1);
}
.question{
margin-top: 10px;
margin-bottom: 10px;
}
hr{
border-top: 1px solid hsl(240, 5%, 91%);
}
a:link{
text-decoration: none;
color: black;
}
a:hover{
color: #F47B56;
transition: 0.2s;
}
.answer{
display:none;
}