Skip to content

Commit b99b293

Browse files
authored
Add files via upload
1 parent 322da3a commit b99b293

File tree

3 files changed

+102
-0
lines changed

3 files changed

+102
-0
lines changed

assets/css/Features-Image-icons.css

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
.bs-icon {
2+
--bs-icon-size: .75rem;
3+
display: flex;
4+
flex-shrink: 0;
5+
justify-content: center;
6+
align-items: center;
7+
font-size: var(--bs-icon-size);
8+
width: calc(var(--bs-icon-size) * 2);
9+
height: calc(var(--bs-icon-size) * 2);
10+
color: var(--bs-primary);
11+
}
12+
13+
.bs-icon-xs {
14+
--bs-icon-size: 1rem;
15+
width: calc(var(--bs-icon-size) * 1.5);
16+
height: calc(var(--bs-icon-size) * 1.5);
17+
}
18+
19+
.bs-icon-sm {
20+
--bs-icon-size: 1rem;
21+
}
22+
23+
.bs-icon-md {
24+
--bs-icon-size: 1.5rem;
25+
}
26+
27+
.bs-icon-lg {
28+
--bs-icon-size: 2rem;
29+
}
30+
31+
.bs-icon-xl {
32+
--bs-icon-size: 2.5rem;
33+
}
34+
35+
.bs-icon.bs-icon-primary {
36+
color: var(--bs-white);
37+
background: var(--bs-primary);
38+
}
39+
40+
.bs-icon.bs-icon-primary-light {
41+
color: var(--bs-primary);
42+
background: rgba(var(--bs-primary-rgb), .2);
43+
}
44+
45+
.bs-icon.bs-icon-semi-white {
46+
color: var(--bs-primary);
47+
background: rgba(255, 255, 255, .5);
48+
}
49+
50+
.bs-icon.bs-icon-rounded {
51+
border-radius: .5rem;
52+
}
53+
54+
.bs-icon.bs-icon-circle {
55+
border-radius: 50%;
56+
}
57+
58+
@media (max-width: 768px) {
59+
.bs-icon-md.bs-icon-rounded.bs-icon-primary.bs-icon {
60+
visibility: hidden;
61+
}
62+
}
63+
64+
#mainNav {
65+
backdrop-filter: blur(16px) saturate(180%) !important;
66+
-webkit-backdrop-filter: blur(16px) saturate(180%) !important;
67+
background-color: rgba(45,45,45,0.75) !important;
68+
/*border-bottom: #2D2D2D 200px;*/
69+
}
70+

assets/css/Features-Image-images.css

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.fit-cover {
2+
object-fit: cover;
3+
}
4+

assets/css/index.css

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
#landing-page-background {
2+
height: 75vh;
3+
/*background: url("/assets/img/52791869103_dbc1de7f77_k.webp?h=8fba03dd4847db7f59767f088027fa0c") no-repeat;*/
4+
/*background-size: cover;*/
5+
/*background-attachment: fixed;*/
6+
}
7+
8+
@media (max-width: 768px) {
9+
#landing-page-background {
10+
background-attachment: scroll;
11+
}
12+
}
13+
14+
.sped-cards {
15+
border: 1px solid rgba(255, 255, 255, 0.125) !important;
16+
background: none !important;
17+
}
18+
19+
.mainHead em {
20+
text-decoration-color: blue;
21+
text-decoration: underline;
22+
}
23+
24+
#mainNav .container {
25+
max-width: none;
26+
padding-left: 2.5rem;
27+
}
28+

0 commit comments

Comments
 (0)