-
Notifications
You must be signed in to change notification settings - Fork 34
/
faq.css
90 lines (86 loc) · 1.38 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
* {
margin: 0;
padding: 0;
}
body {
/* font-family: 'roboto', sans-serif; */
font-family: Manjari,sans-serif;
color: #666;
font-size: 16px;
background: #f9f9f9;
line-height: 1.6em;
}
ul, li {
list-style: none;
}
#faq_s h2{
margin-left:8rem;
font-weight: bold;
}
#faq_s span{
color: orange;
font-size: 1.8rem;
}
#footer{
padding-bottom: 0rem!important;
}
.q:hover{
cursor: pointer;
}
#faq {
width: 65%; /* faq width*/
overflow: auto;
}
#footer h4{
text-align: center;
color: black;
letter-spacing: 0.2rem;
word-spacing: 0.5rem;
}
#footer a:hover{
/* color: inherit; */
text-decoration: none;
cursor: pointer!important;
}
#footer h5{
color: #1A1126;
}
#footer a{
color: #666;
}
#footer h4:hover{
cursor: pointer!important;
}
.faq li {
padding: 0.5rem; /*inter question spacing*/
}
.faq li.q {
background: #4FC2E;
font-size: 100%;
border-bottom: 1px #ddd solid; /*inter question border*/*/
cursor: pointer!important;
}
.faq i{
padding-right: 2.5vw;
border-right: 2px solid orange;
margin: 0 2vw;
}
.faq li.a {
/*background: #3BB0D6;*/
background: #eee;
color: black!important;
display: none;
color:#fff;
font-size: 100%;
margin-left: 6rem;
}
.rotate {
-moz-transform: rotate(90deg);
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}
@media (max-width:800px) {
#faq{
width: 90%;
}
}