-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (66 loc) · 1.42 KB
/
style.css
File metadata and controls
72 lines (66 loc) · 1.42 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
.page-header {
padding: 75px 2rem 2rem;
background-color: #A64D79;
}
.faq-section {
padding: 2rem;
}
.site-footer {
padding: 2rem;
text-align: center;
background-color: #f1f1f1;
opacity: 0.8;
}
.benefit-box {
border: 1px solid #000;
height: 100px;
width: 100px;
display: inline-block;
line-height: 100px;
text-align: center;
margin: 0 0px; /* space between boxes */
}
.image-placeholder {
height: 300px; /* dimensions are placeholder */
width: auto;
background: url('https://www.arenasolutions.com/wp-content/uploads/creating-company-values.jpg') no-repeat center; /* add image */
background-size: contain; /* ensure the image covers the entire area */
}
.position-box {
border: 1px solid #000;
margin: 10px 0;
padding: 10px;
}
.apply-button {
text-decoration: none;
background-color: #f44336;
color: white;
padding: 10px 20px;
text-align: center;
display: inline-block;
margin: 10px 0;
}
/* accordion button related things */
.accordion {
background-color: #eee;
color: #444;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
transition: 0.4s;
}
.active, .accordion:hover {
background-color: #ccc;
}
/* accordion panel */
.panel {
padding: 0 18px;
background-color: white;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}