mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
61 lines
838 B
SCSS
61 lines
838 B
SCSS
//
|
|
// Brand guidelines
|
|
//
|
|
|
|
// Logo series wrapper
|
|
.bd-brand-logos {
|
|
color: $bd-purple-bright;
|
|
|
|
.inverse {
|
|
color: $white;
|
|
background-color: $bd-purple-bright;
|
|
}
|
|
}
|
|
|
|
// Individual items
|
|
.bd-brand-item {
|
|
+ .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 {
|
|
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;
|
|
|
|
@include media-breakpoint-up(md) {
|
|
width: 6rem;
|
|
height: 6rem;
|
|
}
|
|
}
|