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

47 lines
907 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
box-sizing: border-box;
2024-12-02 16:39:38 +01:00
padding: 3px var(--unit--horizontal) 6px var(--unit--horizontal);
border-bottom: 0;
}
.main-footer--background {
border-top: 1px solid #eee;
border-right: 1px solid #eee;
2024-12-01 13:57:24 +01:00
background-color: #000;
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
}
2024-12-02 16:39:38 +01:00
#main-footer li:not(.open-nav-wrapper) {
display: none;
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) {
2024-12-02 16:39:38 +01:00
#main-footer li {
display: block !important;
}
2024-03-10 19:24:24 +01:00
#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
}