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
40 lines
647 B
SCSS
40 lines
647 B
SCSS
// stylelint-disable declaration-no-important, selector-max-id
|
|
|
|
//
|
|
// Carbon ads
|
|
//
|
|
|
|
#carbonads {
|
|
position: static;
|
|
display: block;
|
|
max-width: 400px;
|
|
padding: 15px 15px 15px 160px;
|
|
margin: 2rem 0;
|
|
overflow: hidden;
|
|
@include font-size(.8125rem);
|
|
line-height: 1.4;
|
|
text-align: left;
|
|
background-color: rgba(0, 0, 0, .05);
|
|
|
|
a {
|
|
color: $gray-800;
|
|
text-decoration: none;
|
|
}
|
|
|
|
@include media-breakpoint-up(sm) {
|
|
max-width: 330px;
|
|
@include border-radius(4px);
|
|
}
|
|
}
|
|
|
|
.carbon-img {
|
|
float: left;
|
|
margin-left: -145px;
|
|
}
|
|
|
|
.carbon-poweredby {
|
|
display: block;
|
|
margin-top: .75rem;
|
|
color: $gray-700 !important;
|
|
}
|