home page
This commit is contained in:
@@ -1,4 +1,9 @@
|
||||
.footer {
|
||||
:host {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.footer {
|
||||
background-color: #1a1a1a;
|
||||
color: #ffffff;
|
||||
margin-top: auto;
|
||||
@@ -217,3 +222,192 @@
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
// ========== DEXAR FOOTER STYLES ==========
|
||||
.dexar-footer {
|
||||
margin-top: auto;
|
||||
}
|
||||
|
||||
.dexar-footer-bg {
|
||||
background-image: url('/assets/images/footer_bg.webp');
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
background: rgba(30, 60, 56, 0.85);
|
||||
}
|
||||
}
|
||||
|
||||
.dexar-footer-container {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
max-width: 1440px;
|
||||
margin: 0 auto;
|
||||
padding: 48px 40px 24px;
|
||||
}
|
||||
|
||||
.dexar-footer-top {
|
||||
display: flex;
|
||||
gap: 48px;
|
||||
padding-bottom: 32px;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.15);
|
||||
}
|
||||
|
||||
.dexar-footer-logo {
|
||||
flex-shrink: 0;
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
padding-top: 4px;
|
||||
|
||||
.dexar-footer-logo-desktop {
|
||||
display: block;
|
||||
height: 40px;
|
||||
width: auto;
|
||||
filter: brightness(0) invert(1);
|
||||
}
|
||||
|
||||
.dexar-footer-logo-mobile {
|
||||
display: none;
|
||||
height: 32px;
|
||||
width: auto;
|
||||
filter: brightness(0) invert(1);
|
||||
}
|
||||
}
|
||||
|
||||
.dexar-footer-columns {
|
||||
flex: 1;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
gap: 32px;
|
||||
}
|
||||
|
||||
.dexar-footer-col {
|
||||
h4 {
|
||||
font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
color: #ffffff;
|
||||
margin: 0 0 16px 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
|
||||
li {
|
||||
margin-bottom: 10px;
|
||||
|
||||
a {
|
||||
font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
||||
font-size: 13px;
|
||||
font-weight: 400;
|
||||
color: rgba(255, 255, 255, 0.7);
|
||||
text-decoration: none;
|
||||
transition: color 0.2s ease;
|
||||
|
||||
&:hover {
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.dexar-payment-logos {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
|
||||
img {
|
||||
height: 28px;
|
||||
max-height: 28px;
|
||||
width: auto;
|
||||
max-width: 60px;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
padding: 4px 8px;
|
||||
border-radius: 4px;
|
||||
transition: opacity 0.2s;
|
||||
object-fit: contain;
|
||||
|
||||
&:hover {
|
||||
opacity: 0.85;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.dexar-footer-bottom {
|
||||
padding: 20px 0 0;
|
||||
text-align: center;
|
||||
|
||||
p {
|
||||
font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
||||
font-size: 12px;
|
||||
color: rgba(255, 255, 255, 0.5);
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
// Responsive
|
||||
@media (max-width: 992px) {
|
||||
.dexar-footer-container {
|
||||
padding: 40px 32px 20px;
|
||||
}
|
||||
|
||||
.dexar-footer-top {
|
||||
flex-direction: column;
|
||||
gap: 32px;
|
||||
}
|
||||
|
||||
.dexar-footer-columns {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.dexar-footer-container {
|
||||
padding: 32px 20px 16px;
|
||||
}
|
||||
|
||||
.dexar-footer-logo {
|
||||
.dexar-footer-logo-desktop {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.dexar-footer-logo-mobile {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
.dexar-footer-columns {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 24px;
|
||||
}
|
||||
|
||||
.dexar-footer-col h4 {
|
||||
font-size: 14px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.dexar-footer-col ul li a {
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.dexar-footer-container {
|
||||
padding: 24px 16px 12px;
|
||||
}
|
||||
|
||||
.dexar-footer-columns {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user