mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
129bb08fc4
Now there's only one command needed to run the docs: `npm run docs-serve`. Also, simplify the npm scripts.
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;
|
|
}
|