46 lines
907 B
CSS
46 lines
907 B
CSS
#main-footer {
|
|
position: fixed;
|
|
bottom: 0;
|
|
box-sizing: border-box;
|
|
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;
|
|
background-color: #000;
|
|
}
|
|
[data-template="home"] #main-footer {
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
#main-footer li:not(.open-nav-wrapper) {
|
|
display: none;
|
|
}
|
|
|
|
#main-footer button.open-nav {
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
@media screen and (min-width: 640px) {
|
|
#main-footer li {
|
|
display: block !important;
|
|
}
|
|
#main-footer {
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: var(--body-padding);
|
|
background-color: transparent;
|
|
padding: var(--unit--vertical) var(--unit--horizontal);
|
|
}
|
|
#main-footer ul {
|
|
display: block;
|
|
}
|
|
#main-footer button.open-nav {
|
|
margin-bottom: var(--unit--vertical);
|
|
}
|
|
}
|