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

20 lines
396 B
CSS
Raw Normal View History

2024-01-26 11:03:42 +01:00
#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-03-09 11:27:10 +01:00
width: calc(18 * var(--unit--horizontal));
padding: 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 {
padding: calc(var(--unit--horizontal) / 2) var(--unit--horizontal);
}
}