mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-30 12:24:19 +01:00
b6b96c174b
- Simplify display headings example markup - Simplify footer styles - Remove z-indices hacks in the docs - Remove redundant modal styling in docs - Use `escape-svg()` to escape docs sidebar chevron - Simplify sidebar chevron code - Cleanup masthead css & fix column width between `md` & `lg` - Easier to download logo's with the `download` attribute. - Changed some color codes into variables - Cleanup brands css
35 lines
357 B
SCSS
35 lines
357 B
SCSS
//
|
|
// Footer
|
|
//
|
|
|
|
.bd-footer {
|
|
@include font-size(.875rem);
|
|
|
|
a {
|
|
font-weight: 600;
|
|
color: $gray-700;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
color: $link-color;
|
|
}
|
|
}
|
|
|
|
p {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.bd-footer-links {
|
|
padding-left: 0;
|
|
margin-bottom: 1rem;
|
|
|
|
li {
|
|
display: inline-block;
|
|
|
|
+ li {
|
|
margin-left: 1rem;
|
|
}
|
|
}
|
|
}
|