Commit bc88c90b authored by Mark Otto's avatar Mark Otto

footer overhaul again

parent 97bcfb9e
<footer class="bd-footer" role="contentinfo"> <footer class="bd-footer text-muted" role="contentinfo">
<div class="bd-container"> <div class="container">
<ul class="bd-footer-links text-muted"> <ul class="bd-footer-links">
<li><a href="{{ site.repo }}">GitHub</a></li> <li><a href="{{ site.repo }}">GitHub</a></li>
<li><a href="https://twitter.com/getbootstrap">Twitter</a></li> <li><a href="https://twitter.com/getbootstrap">Twitter</a></li>
<li><a href="../getting-started/#examples">Examples</a></li> <li><a href="../getting-started/#examples">Examples</a></li>
......
...@@ -395,14 +395,18 @@ ...@@ -395,14 +395,18 @@
border-radius: .25rem; } } border-radius: .25rem; } }
.bd-footer { .bd-footer {
padding-top: 2rem; padding: 4rem 0;
margin-top: 2rem; margin-top: 4rem;
font-size: 85%; font-size: 85%;
color: #8e869d; background-color: #f7f7f7;
text-align: center; text-align: center; }
background-color: #2a2730; }
.bd-footer a { .bd-footer a {
color: #fff; } font-weight: 500;
color: #55595c; }
.bd-footer a:hover {
color: #0275d8; }
.bd-footer p {
margin-bottom: 0; }
@media (min-width: 34em) { @media (min-width: 34em) {
.bd-footer { .bd-footer {
text-align: left; } } text-align: left; } }
......
This diff was suppressed by a .gitattributes entry.
...@@ -3,15 +3,23 @@ ...@@ -3,15 +3,23 @@
// //
.bd-footer { .bd-footer {
padding-top: 2rem; padding: 4rem 0;
margin-top: 2rem; margin-top: 4rem;
font-size: 85%; font-size: 85%;
color: $bd-graphite-light; background-color: #f7f7f7;
text-align: center; text-align: center;
background-color: $bd-graphite;
a { a {
color: #fff; font-weight: 500;
color: $gray;
&:hover {
color: $link-color;
}
}
p {
margin-bottom: 0;
} }
@include media-breakpoint-up(sm) { @include media-breakpoint-up(sm) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment