2015-04-16 23:57:49 +02:00
|
|
|
//
|
|
|
|
// Brand guidelines
|
|
|
|
//
|
|
|
|
|
|
|
|
// Logo series wrapper
|
|
|
|
.bd-brand-logos {
|
2018-10-15 10:27:00 +02:00
|
|
|
color: $bd-purple;
|
|
|
|
|
|
|
|
.inverse {
|
|
|
|
color: $white;
|
|
|
|
background-color: $bd-purple;
|
|
|
|
}
|
2015-04-16 23:57:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Individual items
|
|
|
|
.bd-brand-item {
|
2019-08-30 22:32:12 +02:00
|
|
|
width: 100%;
|
|
|
|
padding: 4rem 1rem;
|
2015-04-16 23:57:49 +02:00
|
|
|
|
2018-10-15 10:27:00 +02:00
|
|
|
+ .bd-brand-item {
|
|
|
|
border-top: 1px solid $white;
|
|
|
|
}
|
2015-04-16 23:57:49 +02:00
|
|
|
|
2018-10-15 10:27:00 +02:00
|
|
|
@include media-breakpoint-up(md) {
|
|
|
|
+ .bd-brand-item {
|
|
|
|
border-top: 0;
|
|
|
|
border-left: 1px solid $white;
|
|
|
|
}
|
2015-04-16 23:57:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Color swatches
|
|
|
|
//
|
|
|
|
|
|
|
|
.color-swatches {
|
2019-08-30 22:32:12 +02:00
|
|
|
display: flex;
|
2015-04-16 23:57:49 +02:00
|
|
|
margin: 0 -5px;
|
|
|
|
|
2018-10-15 10:27:00 +02:00
|
|
|
// Docs colors
|
2015-04-16 23:57:49 +02:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
}
|
2018-10-15 10:27:00 +02:00
|
|
|
|
|
|
|
.color-swatch {
|
|
|
|
width: 4rem;
|
|
|
|
height: 4rem;
|
|
|
|
margin-right: .25rem;
|
|
|
|
margin-left: .25rem;
|
2019-07-24 08:41:18 +02:00
|
|
|
@include border-radius();
|
2018-10-15 10:27:00 +02:00
|
|
|
|
|
|
|
@include media-breakpoint-up(md) {
|
|
|
|
width: 6rem;
|
|
|
|
height: 6rem;
|
|
|
|
}
|
|
|
|
}
|