_brand.scss 838 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. //
  2. // Brand guidelines
  3. //
  4. // Logo series wrapper
  5. .bd-brand-logos {
  6. color: $bd-purple-bright;
  7. .inverse {
  8. color: $white;
  9. background-color: $bd-purple-bright;
  10. }
  11. }
  12. // Individual items
  13. .bd-brand-item {
  14. + .bd-brand-item {
  15. border-top: 1px solid $white;
  16. }
  17. @include media-breakpoint-up(md) {
  18. + .bd-brand-item {
  19. border-top: 0;
  20. border-left: 1px solid $white;
  21. }
  22. }
  23. }
  24. //
  25. // Color swatches
  26. //
  27. .color-swatches {
  28. margin: 0 -5px;
  29. // Docs colors
  30. .bd-purple {
  31. background-color: $bd-purple;
  32. }
  33. .bd-purple-light {
  34. background-color: $bd-purple-light;
  35. }
  36. .bd-purple-lighter {
  37. background-color: #e5e1ea;
  38. }
  39. .bd-gray {
  40. background-color: #f9f9f9;
  41. }
  42. }
  43. .color-swatch {
  44. width: 4rem;
  45. height: 4rem;
  46. @include media-breakpoint-up(md) {
  47. width: 6rem;
  48. height: 6rem;
  49. }
  50. }