actuel-inactuel/assets/css/src/footer.css

37 lines
624 B
CSS
Raw Normal View History

2024-01-26 11:03:42 +01:00
#main-footer {
2024-11-26 13:21:42 +01:00
position: fixed;
bottom: 0;
2024-04-15 09:16:27 +02:00
width: 100%;
box-sizing: border-box;
padding: var(--unit--horizontal);
}
[data-template="home"] #main-footer {
2024-03-09 11:27:10 +01:00
position: fixed;
2024-01-26 11:03:42 +01:00
left: 0;
bottom: 0;
2024-04-15 09:16:27 +02:00
}
#main-footer ul {
display: flex;
justify-content: center;
gap: calc(2 * var(--unit--horizontal));
2024-01-26 11:03:42 +01:00
}
#main-footer a {
text-shadow: 0 0 2px #000;
-moz-text-shadow: 0 0 2px #000;
-webkit-text-shadow: 0 0 2px #000;
}
2024-03-10 19:24:24 +01:00
@media screen and (min-width: 640px) {
#main-footer {
2024-11-26 13:21:42 +01:00
position: fixed;
left: 0;
bottom: 0;
width: var(--body-padding);
}
#main-footer ul {
display: block;
2024-03-10 19:24:24 +01:00
}
}