-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.css
80 lines (64 loc) · 1.13 KB
/
custom.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
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 100%;
}
.my-bg-photo {
background: url('images/banner-bg.jpg') no-repeat;
background-size: cover;
background-position: center center;
position: relative;
}
.my-bg-photo * {
position: relative;
z-index: 10;
}
.my-bg-photo:before {
content: " ";
position: absolute;
z-index: 1;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: #000;
opacity: .55;
}
.banner-logo {
position: relative;
}
/*Reveal and Hide Styles Begin*/
.menu-btn {
text-decoration: underline;
color: blue;
}
.menu-btn:hover {
text-decoration: none;
}
.toggle-btn {
display: none;
}
/* anything smaller than a tablet */
@media screen and (max-width: 767px) {
.toggle-btn-visible {
display: block;
}
.toggle-target-hidden {
display: none;
}
.toggle-target-expanded {
display: block;
}
}
/*Reveal and Hide Styles End*/
.box-a {
background-color: rgb(192, 127, 127);
padding: 15px;
border: 2px solid black;
border-radius: 10px;
}
.my-custom-container {
max-width: 800px;
}
.accordion .btn-link:focus {
box-shadow: none;
}