ese-website/_includes/footer.css

76 lines
1.2 KiB
CSS
Raw Normal View History

2024-09-20 17:10:24 +02:00
footer {
border-top: 1px dotted rgba(0,0,0,.15);
2024-09-23 17:54:34 +02:00
padding: 4rem 0 5.5rem;
2024-09-20 17:10:24 +02:00
}
#footerNav ul {
margin: 0;
padding: 0;
display: flex;
2024-09-25 18:27:55 +02:00
gap: .5em 1.3em;
flex-wrap: wrap;
2024-09-20 17:10:24 +02:00
}
#footerNav li {
display: inline;
}
2024-09-23 17:54:34 +02:00
#footerNav a {
color: var(--color-text);
text-decoration: none;
transition: color .3s ease-out;
}
#footerNav a:hover {
color: var(--color-primary);
}
2024-09-20 17:10:24 +02:00
.footer-container {
display: grid;
grid-template-columns: auto auto;
2024-09-23 17:54:34 +02:00
grid-template-rows: auto auto;
2024-09-20 17:10:24 +02:00
grid-auto-flow: column;
gap: 1em;
}
2024-09-25 18:27:55 +02:00
@media (width >= 1024px) {
.footer-container > :nth-last-child(-n + 2) {
text-align: end;
}
2024-09-20 17:10:24 +02:00
}
2024-09-23 17:54:34 +02:00
.designCredit {
font-size: 1rem;
align-self: end;
}
.designCredit a {
color: var(--color-text);
font-size: 1rem;
font-weight: 500;
text-decoration: none;
border-bottom: 1px dotted var(--color-text);
}
.languageSwitch a {
display: inline-block;
background: #e2e8f0;
color: #000;
border-radius: .5rem;
padding: 0.7em 0.9em;
line-height: 1;
text-decoration: none;
transition: background-color .3s ease-out;
}
.languageSwitch a:hover {
background: #d5dbe4;
}
2024-09-25 18:27:55 +02:00
@media (width < 1024px) {
.footer-container {
grid-template-columns: auto;
grid-template-rows: repeat(4, auto);
}
}