mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-02 14:24:19 +01:00
129bb08fc4
Now there's only one command needed to run the docs: `npm run docs-serve`. Also, simplify the npm scripts.
68 lines
954 B
SCSS
68 lines
954 B
SCSS
//
|
|
// Brand guidelines
|
|
//
|
|
|
|
// Logo series wrapper
|
|
.bd-brand-logos {
|
|
color: $bd-purple;
|
|
|
|
.inverse {
|
|
color: $white;
|
|
background-color: $bd-purple;
|
|
}
|
|
}
|
|
|
|
// Individual items
|
|
.bd-brand-item {
|
|
width: 100%;
|
|
padding: 4rem 1rem;
|
|
|
|
+ .bd-brand-item {
|
|
border-top: 1px solid $white;
|
|
}
|
|
|
|
@include media-breakpoint-up(md) {
|
|
+ .bd-brand-item {
|
|
border-top: 0;
|
|
border-left: 1px solid $white;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
//
|
|
// Color swatches
|
|
//
|
|
|
|
.color-swatches {
|
|
display: flex;
|
|
margin: 0 -5px;
|
|
|
|
// Docs colors
|
|
.bd-purple {
|
|
background-color: $bd-purple;
|
|
}
|
|
.bd-purple-light {
|
|
background-color: $bd-purple-light;
|
|
}
|
|
.bd-purple-lighter {
|
|
background-color: #e5e1ea;
|
|
}
|
|
.bd-gray {
|
|
background-color: #f9f9f9;
|
|
}
|
|
}
|
|
|
|
.color-swatch {
|
|
width: 4rem;
|
|
height: 4rem;
|
|
margin-right: .25rem;
|
|
margin-left: .25rem;
|
|
@include border-radius();
|
|
|
|
@include media-breakpoint-up(md) {
|
|
width: 6rem;
|
|
height: 6rem;
|
|
}
|
|
}
|