lumeweb.com/src/components/P1/Footer/FooterStyles.css

86 lines
1.7 KiB
CSS
Raw Normal View History

2023-05-06 16:35:54 +00:00
.footer-li {
font-family: var(--font-family-jaldi);
2023-05-10 12:17:11 +00:00
margin-inline: 0.5vw;
2023-05-06 16:35:54 +00:00
list-style-type: none;
2023-05-07 14:29:00 +00:00
white-space: nowrap;
2023-05-06 16:35:54 +00:00
}
.footer-cards {
margin: 0 auto;
display: grid;
gap: 1rem;
2023-05-07 18:17:41 +00:00
padding: 7% 12%;
2023-05-06 16:35:54 +00:00
background-color: #020E10;
height: auto;
}
2023-05-06 16:59:26 +00:00
@media (width >=600px) {
2023-05-06 16:35:54 +00:00
.footer-cards {
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
}
2023-05-10 12:17:11 +00:00
.footer-li {
margin-inline: 0.7vw;
}
2023-05-06 16:35:54 +00:00
}
2023-05-06 16:59:26 +00:00
@media (width >=900px) {
2023-05-06 16:35:54 +00:00
.footer-cards {
grid-template-columns: repeat(6, 1fr);
}
2023-05-10 12:17:11 +00:00
.footer-li {
margin-inline: 0.5vw;
}
}
@media (width <=600px) {
.footer-li {
margin-inline: 1vw;
}
2023-05-06 16:35:54 +00:00
}
2023-05-05 06:02:45 +00:00
.footer-logo {
2023-05-06 16:59:26 +00:00
background-image: url('../../../assets/lume-logo.webp');
2023-05-05 06:02:45 +00:00
background-repeat: no-repeat;
background-size: contain;
2023-05-10 00:16:21 +00:00
height: 8.1vh;
2023-05-10 16:16:33 +00:00
min-width: 130px;
2023-05-05 06:02:45 +00:00
display: inline-block;
text-align: left;
z-index: 998 !important;
}
.footer-email {
2023-05-06 16:59:26 +00:00
background-image: url('../../../assets/email-icon.webp');
2023-05-05 06:02:45 +00:00
background-repeat: no-repeat;
background-size: contain;
2023-05-06 16:35:54 +00:00
background-position: left;
2023-05-07 14:29:00 +00:00
margin-right: 2%;
2023-05-05 06:02:45 +00:00
padding-inline: 10px;
height: 14px;
2023-05-10 15:43:14 +00:00
line-height: 5.5vh;
2023-05-05 06:02:45 +00:00
}
2023-05-06 16:35:54 +00:00
.footer-h2 {
2023-05-07 18:16:06 +00:00
font-size: calc(12px + (20 - 10) * ((100vw - 300px) / (1600 - 300)));
2023-05-06 16:35:54 +00:00
color: var(--aquamarine);
line-height: 1vh;
z-index: 999;
margin-top: 5em;
2023-05-07 18:16:06 +00:00
white-space: nowrap;
2023-05-05 06:02:45 +00:00
}
.footer-padding {
display: inline-block;
text-align: left;
font-family: var(--font-family-jaldi);
font-size: calc(15px + (21 - 10) * ((100vw - 300px) / (1600 - 300)));
2023-05-06 16:35:54 +00:00
margin-inline: -5px;
2023-05-05 06:02:45 +00:00
margin-top: 5vh;
}
2023-05-06 16:35:54 +00:00
.footer-span {
margin-top: 1em;
2023-05-05 06:02:45 +00:00
}