-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheetfaqs.css
More file actions
95 lines (83 loc) · 1.8 KB
/
stylesheetfaqs.css
File metadata and controls
95 lines (83 loc) · 1.8 KB
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
/*main body styling*/
body{
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-weight: normal;
}
body, html {
height: 100%;
}
/*Hero/cover image Section*/
.hero-image {
background-image: url("https://i.guim.co.uk/img/media/cf90a0ad4797930ee6d780dd0930c74cfec7a92f/0_300_4500_2700/master/4500.jpg?width=700&quality=85&auto=format&fit=max&s=900d08629585511256cd2530fcd69d1e");
height: 50%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
/*Page Title*/
h1{
padding: 40px;
display: flex;
justify-content: center;
}
/*FAQ layout*/
.bold_text {
font-weight: bold;
}
.accordion-section .panel-default > .panel-heading {
border: 0;
background: #f4f4f4;
padding: 0;
border-radius: 4px;
}
.accordion-section .panel-default .panel-title a {
display: block;
font-style: italic;
font-size: 1.5rem;
}
.accordion-section .panel-default .panel-title a:after {
font-family: 'FontAwesome';
font-style: normal;
font-size: 3rem;
content: "\f106";
color: #616972;
float: right;
margin-top: -12px;
}
.accordion-section .panel-default .panel-title a.collapsed:after {
content: "\f107";
}
.accordion-section .panel-default .panel-body {
font-size: 1.2rem;
}
a{
color: black;
text-decoration: none;
}
a:hover{
color: #BC53E6;
text-decoration: none;
transform:scale(1.01);
}
.container{
padding-bottom: 30px;
}
/*video section*/
.rectangle{
padding-top: 30px;
padding-bottom: 30px;
width: auto;
background-color: #F7EFEC
}
/*Footer*/
footer p{
padding-top: 10px;
font-style: normal;
font-weight: 300;
font-size: 14px;
line-height: 32px;
text-align: center;
letter-spacing: 1px;
color: #000000;
}