mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2025-04-29 05:13:49 +03:00
41 lines
587 B
Plaintext
41 lines
587 B
Plaintext
/*
|
|
* Footer
|
|
*
|
|
* Separated section of content at the bottom of all pages, save the homepage.
|
|
*/
|
|
|
|
.bs-docs-footer {
|
|
padding-top: 50px;
|
|
padding-bottom: 50px;
|
|
margin-top: 100px;
|
|
color: #99979c;
|
|
text-align: center;
|
|
background-color: @site-color-footer;
|
|
|
|
a {
|
|
color: #fff;
|
|
}
|
|
|
|
.bs-docs-footer-links {
|
|
padding-left: 0;
|
|
margin-bottom: 20px;
|
|
li {
|
|
display: inline-block;
|
|
}
|
|
li + li {
|
|
margin-left: 15px;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@media (min-width: 768px) {
|
|
.bs-docs-footer {
|
|
text-align: left;
|
|
}
|
|
|
|
.bs-docs-footer p {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|