-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathFAQ.css
108 lines (82 loc) · 1.61 KB
/
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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
*{
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
margin: 0;
padding: 0;
}
body{
height: 100vh;
width: 100%;
justify-content: center;
align-items: center;
/* background-image: linear-gradient(to right, #71b7e6, #a554c5); */
background-color: #e2c3c3c7;
}
.navbar{
display: flex;
align-items: center;
padding: 20px;
}
li,a{
text-decoration: none;
color:#774646;
}
li,a:hover{
transition: 0.3s ease 0s;
color: #00848f;
}
nav{
flex: 1;
text-align: right;
}
nav ul{
display: inline-block;
list-style-type: none;
text-decoration: none;
}
nav ul li{
display: inline-block;
margin-right: 20px;
}
main{
max-width: 800px;
margin: 5vh auto;
padding: 20px;
}
h1{
font-size: 2.5em;
font-weight: 400;
margin-bottom: 40px;
columns: #707070;
}
h2{
font-size: 1.1em;
font-weight: 400;
color: #00848f;
}
.faq{
padding: 20px 30px;
border: 2px solid rgba(0, 0, 0, .1);
box-shadow: 10px 10px;
border-radius: 5px;
color: #979797;
position: relative;
line-height: 1.5em;
margin-top: 15px;
background-color: #fff;
}
.faq .faq_text{
width: 90%;
}
.btn{
color: #5e5d5d;
position: absolute;
right: 25px;
top: 35px;
font-weight: 400;
font-size: 1.4em;
}
/*hide p tags*/
.faq .open h2{
color: #00848f;
}