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

42 lines
779 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;
2024-12-01 13:57:24 +01:00
padding-bottom: 3px;
background-color: #000;
padding-bottom: 6px;
2024-04-15 09:16:27 +02:00
}
[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
}
2024-12-01 13:57:24 +01:00
#main-footer button.open-nav {
transform: translateY(-1px);
}
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);
2024-12-01 13:57:24 +01:00
background-color: transparent;
padding: var(--unit--vertical) var(--unit--horizontal);
2024-11-26 13:21:42 +01:00
}
#main-footer ul {
display: block;
2024-03-10 19:24:24 +01:00
}
2024-12-01 13:57:24 +01:00
#main-footer button.open-nav {
margin-bottom: var(--unit--vertical);
}
2024-03-10 19:24:24 +01:00
}